From 1c7cd67f6ddb7d8d90962ef52d13d695746c6d90 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sat, 11 Sep 2021 19:08:02 -0700 Subject: [PATCH] iOS: Buildfix bad GLES headers. --- Common/GPU/OpenGL/GLQueueRunner.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Common/GPU/OpenGL/GLQueueRunner.cpp b/Common/GPU/OpenGL/GLQueueRunner.cpp index f3bd46dd4b..e229f59c11 100644 --- a/Common/GPU/OpenGL/GLQueueRunner.cpp +++ b/Common/GPU/OpenGL/GLQueueRunner.cpp @@ -20,6 +20,8 @@ // These are the same value, alias for simplicity. #if defined(GL_CLIP_DISTANCE0_EXT) && !defined(GL_CLIP_DISTANCE0) #define GL_CLIP_DISTANCE0 GL_CLIP_DISTANCE0_EXT +#elif !defined(GL_CLIP_DISTANCE0) +#define GL_CLIP_DISTANCE0 0x3000 #endif static constexpr int TEXCACHE_NAME_CACHE_SIZE = 16;