From 6090e79191b4f95475a007aa782503ef98ae5f28 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Fri, 29 Apr 2022 14:52:47 +0200 Subject: [PATCH] LibSoftGPU: Use `u64` for `Device` statistics vars No functional changes. --- Userland/Libraries/LibSoftGPU/Device.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Userland/Libraries/LibSoftGPU/Device.cpp b/Userland/Libraries/LibSoftGPU/Device.cpp index 754520f91e..cfb1bf5629 100644 --- a/Userland/Libraries/LibSoftGPU/Device.cpp +++ b/Userland/Libraries/LibSoftGPU/Device.cpp @@ -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;