MCPcopy Create free account
hub / github.com/TranslucentTB/TranslucentTB / GetEffectId

Method GetEffectId

ExplorerTAP/effects/CompositeEffect.cpp:3–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include "CompositeEffect.h"
2
3HRESULT 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
14HRESULT CompositeEffect::GetNamedPropertyMapping(LPCWSTR name, UINT* index, awge::GRAPHICS_EFFECT_PROPERTY_MAPPING* mapping) noexcept
15{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected