mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
LibSoftGPU: Use u64
for Device
statistics vars
No functional changes.
This commit is contained in:
parent
365fb36108
commit
6090e79191
Notes:
sideshowbarker
2024-07-18 05:01:22 +09:00
Author: https://github.com/gmta
Commit: 6090e79191
Pull-request: https://github.com/SerenityOS/serenity/pull/13835
Reviewed-by: https://github.com/sunverwerth ✅
1 changed files with 7 additions and 7 deletions
|
@ -23,13 +23,13 @@
|
|||
|
||||
namespace SoftGPU {
|
||||
|
||||
static long long g_num_rasterized_triangles;
|
||||
static long long g_num_pixels;
|
||||
static long long g_num_pixels_shaded;
|
||||
static long long g_num_pixels_blended;
|
||||
static long long g_num_sampler_calls;
|
||||
static long long g_num_stencil_writes;
|
||||
static long long g_num_quads;
|
||||
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;
|
||||
|
||||
using AK::SIMD::any;
|
||||
using AK::SIMD::exp;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue