mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-29 14:14:45 +03:00
LibSoftGPU: Make Device
statistics i64
again
They were erroneously converted into `u64` by me in a previous commit, causing the overdraw statistic to go haywire.
This commit is contained in:
parent
a1f19b7a98
commit
1a338844fa
Notes:
sideshowbarker
2024-07-17 10:54:20 +09:00
Author: https://github.com/gmta Commit: https://github.com/SerenityOS/serenity/commit/1a338844fa Pull-request: https://github.com/SerenityOS/serenity/pull/14044 Reviewed-by: https://github.com/Quaker762 ✅ Reviewed-by: https://github.com/sunverwerth ✅
@ -24,13 +24,13 @@
|
||||
|
||||
namespace SoftGPU {
|
||||
|
||||
static u64 g_num_rasterized_triangles;
|
||||
static u64 g_num_pixels;
|
||||
static u64 g_num_pixels_shaded;
|
||||
static u64 g_num_pixels_blended;
|
||||
static u64 g_num_sampler_calls;
|
||||
static u64 g_num_stencil_writes;
|
||||
static u64 g_num_quads;
|
||||
static i64 g_num_rasterized_triangles;
|
||||
static i64 g_num_pixels;
|
||||
static i64 g_num_pixels_shaded;
|
||||
static i64 g_num_pixels_blended;
|
||||
static i64 g_num_sampler_calls;
|
||||
static i64 g_num_stencil_writes;
|
||||
static i64 g_num_quads;
|
||||
|
||||
using AK::abs;
|
||||
using AK::SIMD::any;
|
||||
|
Loading…
Reference in New Issue
Block a user