mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
VideoCommon/Statistics: Normalize statistic variable names
Normalizes all variables related to statistics so that they follow our coding style. These are relatively low traffic areas, so this modification isn't too noisy.
This commit is contained in:
@ -568,7 +568,7 @@ void Tev::Draw()
|
||||
ASSERT(Position[0] >= 0 && Position[0] < EFB_WIDTH);
|
||||
ASSERT(Position[1] >= 0 && Position[1] < EFB_HEIGHT);
|
||||
|
||||
INCSTAT(stats.thisFrame.tevPixelsIn);
|
||||
INCSTAT(stats.this_frame.tev_pixels_in);
|
||||
|
||||
// initial color values
|
||||
for (int i = 0; i < 4; i++)
|
||||
@ -869,7 +869,7 @@ void Tev::Draw()
|
||||
}
|
||||
#endif
|
||||
|
||||
INCSTAT(stats.thisFrame.tevPixelsOut);
|
||||
INCSTAT(stats.this_frame.tev_pixels_out);
|
||||
EfbInterface::IncPerfCounterQuadCount(PQ_BLEND_INPUT);
|
||||
|
||||
EfbInterface::BlendTev(Position[0], Position[1], output);
|
||||
|
Reference in New Issue
Block a user