| 146 | } |
| 147 | |
| 148 | Int32 Bloom::ComputeMipCount(Uint32 Width, Uint32 Height, float Radius) |
| 149 | { |
| 150 | Uint32 MaxMipCount = ComputeMipLevelsCount(Width, Height); |
| 151 | return static_cast<Int32>(Radius * static_cast<float>(MaxMipCount)); |
| 152 | } |
| 153 | |
| 154 | bool Bloom::PrepareShadersAndPSO(const RenderAttributes& RenderAttribs, FEATURE_FLAGS FeatureFlags) |
| 155 | { |
nothing calls this directly
no outgoing calls
no test coverage detected