Correct a typo in the target defines.

This commit is contained in:
Stefanos Stefanidis 2025-11-03 18:53:26 +02:00
parent 2045b67c4b
commit 3c7d2d684c
No known key found for this signature in database
GPG Key ID: 051E8796B53881BD
4 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
#if defined(__APPLE__)
#include <TargetConditionals.h>
#if defined(TARGET_OS_IOS)
#if TARGET_OS_IOS
#include <OpenGLES/ES2/gl.h>
#include <OpenGLES/ES2/glext.h>
#else

View File

@ -3,7 +3,7 @@
#if defined(__APPLE__)
#include <TargetConditionals.h>
#if defined(TARGET_OS_IOS)
#if TARGET_OS_IOS
#include <OpenGLES/ES2/glext.h>
#include <OpenGLES/ES3/gl.h>
#else

View File

@ -6,7 +6,7 @@
#if defined(__APPLE__)
#include <TargetConditionals.h>
#if defined(TARGET_OS_IOS)
#if TARGET_OS_IOS
#include <OpenGLES/ES2/gl.h>
#else
#include <OpenGL/gl.h>

View File

@ -6,7 +6,7 @@
#if defined(__APPLE__)
#include <TargetConditionals.h>
#if defined(TARGET_OS_IOS)
#if TARGET_OS_IOS
#include <OpenGLES/ES3/gl.h>
#else
#include <OpenGL/gl.h>