mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
VideoCommon: Show the average projection to viewport ratio in statistics
window.
This commit is contained in:
parent
1805f6e381
commit
1e27183dff
5 changed files with 21 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue