| 76 | } |
| 77 | |
| 78 | HRESULT FloodEffect::GetSourceCount(UINT* count) noexcept |
| 79 | { |
| 80 | if (count == nullptr) [[unlikely]] |
| 81 | { |
| 82 | return E_INVALIDARG; |
| 83 | } |
| 84 | |
| 85 | *count = 0; |
| 86 | return S_OK; |
| 87 | } |
| 88 | |
| 89 | winrt::hstring FloodEffect::Name() |
| 90 | { |
nothing calls this directly
no outgoing calls
no test coverage detected