| 45 | } |
| 46 | |
| 47 | HRESULT GaussianBlurEffect::GetPropertyCount(UINT* count) noexcept |
| 48 | { |
| 49 | if (count == nullptr) [[unlikely]] |
| 50 | { |
| 51 | return E_INVALIDARG; |
| 52 | } |
| 53 | |
| 54 | *count = 3; |
| 55 | return S_OK; |
| 56 | } |
| 57 | |
| 58 | HRESULT GaussianBlurEffect::GetProperty(UINT index, ABI::Windows::Foundation::IPropertyValue** value) noexcept try |
| 59 | { |
nothing calls this directly
no outgoing calls
no test coverage detected