Files
react-native-svg/windows/RNSVG/MaskView.h
Marlene Cota 2514ac4fdf feat(windows): add support for 74 and bump Example (#2315)
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.
2024-07-02 09:34:04 +02:00

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