| 1 | #include "CompositeEffect.h" |
| 2 | |
| 3 | HRESULT CompositeEffect::GetEffectId(GUID* id) noexcept |
| 4 | { |
| 5 | if (id == nullptr) [[unlikely]] |
| 6 | { |
| 7 | return E_INVALIDARG; |
| 8 | } |
| 9 | |
| 10 | *id = CLSID_D2D1Composite; |
| 11 | return S_OK; |
| 12 | } |
| 13 | |
| 14 | HRESULT CompositeEffect::GetNamedPropertyMapping(LPCWSTR name, UINT* index, awge::GRAPHICS_EFFECT_PROPERTY_MAPPING* mapping) noexcept |
| 15 | { |
nothing calls this directly
no outgoing calls
no test coverage detected