mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
VideoCommon: Show the average projection to viewport ratio in statistics
window.
This commit is contained in:
@ -147,6 +147,9 @@ void Statistics::DisplayProj() const
|
||||
ImGui::Text("Projection 13: %f (%f)", gproj[13], g2proj[13]);
|
||||
ImGui::Text("Projection 14: %f (%f)", gproj[14], g2proj[14]);
|
||||
ImGui::Text("Projection 15: %f (%f)", gproj[15], g2proj[15]);
|
||||
ImGui::NewLine();
|
||||
ImGui::Text("Avg Projection Viewport Ratio Persp(3D): %f", avg_persp_proj_viewport_ratio);
|
||||
ImGui::Text("Avg Projection Viewport Ratio Ortho(2D): %f", avg_ortho_proj_viewport_ratio);
|
||||
|
||||
ImGui::End();
|
||||
}
|
||||
|
Reference in New Issue
Block a user