summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelle Raaijmakers <jelle@gmta.nl>2022-03-10 20:42:57 +0100
committerAndreas Kling <kling@serenityos.org>2022-03-11 12:30:43 +0100
commit20a5a4363c4e52fd61003ec8eaabc976996d753a (patch)
tree07f0d2e620e9fc7414ebde607c476d5051f10358
parent2632f6ae651b45655be7ce08d7cda733cb19a620 (diff)
downloadserenity-20a5a4363c4e52fd61003ec8eaabc976996d753a.zip
LibSoftGPU: Remove unused vector types from `Device`
-rw-r--r--Userland/Libraries/LibSoftGPU/Device.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/Userland/Libraries/LibSoftGPU/Device.cpp b/Userland/Libraries/LibSoftGPU/Device.cpp
index 99c739c813..5d45a554b6 100644
--- a/Userland/Libraries/LibSoftGPU/Device.cpp
+++ b/Userland/Libraries/LibSoftGPU/Device.cpp
@@ -30,9 +30,6 @@ static long long g_num_sampler_calls;
static long long g_num_stencil_writes;
static long long g_num_quads;
-using IntVector2 = Gfx::Vector2<int>;
-using IntVector3 = Gfx::Vector3<int>;
-
using AK::SIMD::any;
using AK::SIMD::exp;
using AK::SIMD::expand4;