| 81 | } |
| 82 | |
| 83 | HRESULT CompositeEffect::GetSourceCount(UINT* count) noexcept |
| 84 | { |
| 85 | if (count == nullptr) [[unlikely]] |
| 86 | { |
| 87 | return E_INVALIDARG; |
| 88 | } |
| 89 | |
| 90 | *count = static_cast<UINT>(Sources.size()); |
| 91 | return S_OK; |
| 92 | } |
| 93 | |
| 94 | winrt::hstring CompositeEffect::Name() |
| 95 | { |
nothing calls this directly
no outgoing calls
no test coverage detected