mirror of
https://github.com/XITRIX/NXKit.git
synced 2026-05-30 11:46:52 +00:00
10 lines
246 B
C++
10 lines
246 B
C++
#include <UIBlurView.h>
|
|
|
|
using namespace NXKit;
|
|
|
|
UIBlurView::UIBlurView(): UIView(NXRect(), new_shared<CABlurLayer>()) {}
|
|
|
|
std::shared_ptr<CABlurLayer> UIBlurView::_blurLayer() const {
|
|
return std::static_pointer_cast<CABlurLayer>(layer());
|
|
}
|