mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
VideoCommon: Show the average projection to viewport ratio in statistics
window.
This commit is contained in:
@ -25,6 +25,10 @@ struct Statistics
|
||||
std::array<float, 16> gproj{};
|
||||
std::array<float, 16> g2proj{};
|
||||
|
||||
// For widescreen heuristic.
|
||||
float avg_persp_proj_viewport_ratio = 0;
|
||||
float avg_ortho_proj_viewport_ratio = 0;
|
||||
|
||||
std::vector<BPFunctions::ScissorResult> scissors{};
|
||||
size_t current_scissor = 0; // 0 => all, otherwise index + 1
|
||||
int scissor_scale = 10;
|
||||
|
Reference in New Issue
Block a user