From 178b28b469a860caa8236fbed32771bcddf71386 Mon Sep 17 00:00:00 2001 From: Stephan Unverwerth Date: Thu, 16 Dec 2021 22:48:11 +0100 Subject: [PATCH] LibGL: Remove unused GLStruct.h --- Userland/Libraries/LibGL/GLStruct.h | 27 ------------------- .../Libraries/LibGL/SoftwareGLContext.cpp | 1 - Userland/Libraries/LibGL/SoftwareGLContext.h | 1 - .../Libraries/LibSoftGPU/SoftwareRasterizer.h | 1 - 4 files changed, 30 deletions(-) delete mode 100644 Userland/Libraries/LibGL/GLStruct.h diff --git a/Userland/Libraries/LibGL/GLStruct.h b/Userland/Libraries/LibGL/GLStruct.h deleted file mode 100644 index 0d6a348f97..0000000000 --- a/Userland/Libraries/LibGL/GLStruct.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) 2021, Jesse Buhagiar - * - * SPDX-License-Identifier: BSD-2-Clause - */ - -#pragma once - -#include "GL/gl.h" -#include -#include -#include - -namespace GL { - -struct GLColor { - GLclampf r, g, b, a; -}; - -struct GLEdge { - GLfloat x1; - GLfloat y1; - GLfloat x2; - GLfloat y2; -}; - -} diff --git a/Userland/Libraries/LibGL/SoftwareGLContext.cpp b/Userland/Libraries/LibGL/SoftwareGLContext.cpp index 35b6dbd9ca..3331b85db3 100644 --- a/Userland/Libraries/LibGL/SoftwareGLContext.cpp +++ b/Userland/Libraries/LibGL/SoftwareGLContext.cpp @@ -12,7 +12,6 @@ #include #include #include -#include #include #include #include diff --git a/Userland/Libraries/LibGL/SoftwareGLContext.h b/Userland/Libraries/LibGL/SoftwareGLContext.h index eec82eebcc..5a25b0ba4f 100644 --- a/Userland/Libraries/LibGL/SoftwareGLContext.h +++ b/Userland/Libraries/LibGL/SoftwareGLContext.h @@ -13,7 +13,6 @@ #include #include #include -#include #include #include #include diff --git a/Userland/Libraries/LibSoftGPU/SoftwareRasterizer.h b/Userland/Libraries/LibSoftGPU/SoftwareRasterizer.h index 1b5b627f40..bf2628f861 100644 --- a/Userland/Libraries/LibSoftGPU/SoftwareRasterizer.h +++ b/Userland/Libraries/LibSoftGPU/SoftwareRasterizer.h @@ -9,7 +9,6 @@ #include #include #include -#include #include #include #include