mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-06 07:06:11 +00:00
Added support for RNW 74. Bumped windows Example to 74. Updated README.md to remove instructions on how to import Win2D since we no longer use it.
18 lines
557 B
C++
18 lines
557 B
C++
#pragma once
|
|
#include "MaskView.g.h"
|
|
#include "GroupView.h"
|
|
|
|
namespace winrt::RNSVG::implementation {
|
|
struct MaskView : MaskViewT<MaskView, RNSVG::implementation::GroupView> {
|
|
public:
|
|
MaskView() = default;
|
|
|
|
// RenderableView
|
|
void Draw(RNSVG::D2DDeviceContext const & /*deviceContext*/, Windows::Foundation::Size const & /*size*/){};
|
|
};
|
|
} // namespace winrt::RNSVG::implementation
|
|
|
|
namespace winrt::RNSVG::factory_implementation {
|
|
struct MaskView : MaskViewT<MaskView, implementation::MaskView> {};
|
|
} // namespace winrt::RNSVG::factory_implementation
|