| 379 | } |
| 380 | |
| 381 | void PostprocessRenderer::DisableWritingToStencil(ref_ptr<dp::GraphicsContext> context) const |
| 382 | { |
| 383 | if (!m_frameStarted || !CanRenderAntialiasing()) |
| 384 | return; |
| 385 | context->SetStencilTestEnabled(false); |
| 386 | } |
| 387 | |
| 388 | void PostprocessRenderer::UpdateFramebuffers(ref_ptr<dp::GraphicsContext> context, uint32_t width, uint32_t height) |
| 389 | { |
no test coverage detected