| 106 | } |
| 107 | |
| 108 | HRESULT GaussianBlurEffect::GetSourceCount(UINT* count) noexcept |
| 109 | { |
| 110 | if (count == nullptr) [[unlikely]] |
| 111 | { |
| 112 | return E_INVALIDARG; |
| 113 | } |
| 114 | |
| 115 | *count = 1; |
| 116 | return S_OK; |
| 117 | } |
| 118 | |
| 119 | winrt::hstring GaussianBlurEffect::Name() |
| 120 | { |
nothing calls this directly
no outgoing calls
no test coverage detected