| 66 | } |
| 67 | |
| 68 | HRESULT FloodEffect::GetSource(UINT, awge::IGraphicsEffectSource** source) noexcept |
| 69 | { |
| 70 | if (source == nullptr) [[unlikely]] |
| 71 | { |
| 72 | return E_INVALIDARG; |
| 73 | } |
| 74 | |
| 75 | return E_BOUNDS; |
| 76 | } |
| 77 | |
| 78 | HRESULT FloodEffect::GetSourceCount(UINT* count) noexcept |
| 79 | { |
nothing calls this directly
no outgoing calls
no test coverage detected