feat: show FXAA status in performance HUD

This commit is contained in:
Kelsi 2026-03-12 17:01:20 -07:00
parent 806744c483
commit fbcec9e7bf

View file

@ -219,6 +219,9 @@ void PerformanceHUD::render(const Renderer* renderer, const Camera* camera) {
ImGui::Text(" Upscale Dispatches: %zu", renderer->getAmdFsr3UpscaleDispatchCount());
ImGui::Text(" FG Fallbacks: %zu", renderer->getAmdFsr3FallbackCount());
}
if (renderer->isFXAAEnabled()) {
ImGui::TextColored(ImVec4(0.8f, 1.0f, 0.6f, 1.0f), "FXAA: ON");
}
ImGui::Spacing();
}