summaryrefslogtreecommitdiffhomepage
path: root/src/rlgl.c
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2017-12-28 19:27:02 +0100
committerraysan5 <[email protected]>2017-12-28 19:27:02 +0100
commite7cf03b1e4c1aa7872bda7b35a7d064815332759 (patch)
treecb5863339779ca5a6a4e746b1bc0c4a810be85ad /src/rlgl.c
parent7965f983baa91afa7ac8019574a14e4814c91cf2 (diff)
downloadraylib-e7cf03b1e4c1aa7872bda7b35a7d064815332759.tar.gz
raylib-e7cf03b1e4c1aa7872bda7b35a7d064815332759.zip
Minor tweaks
Diffstat (limited to 'src/rlgl.c')
-rw-r--r--src/rlgl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rlgl.c b/src/rlgl.c
index 58e9187d..4bbebf03 100644
--- a/src/rlgl.c
+++ b/src/rlgl.c
@@ -1109,7 +1109,7 @@ void rlglInit(int width, int height)
if (strcmp(extList[i], (const char *)"GL_OES_texture_npot") == 0) texNPOTSupported = true;
// Check texture float support
- if (strcmp(extList[i], (const char *)"OES_texture_float") == 0) texFloatSupported = true;
+ if (strcmp(extList[i], (const char *)"GL_OES_texture_float") == 0) texFloatSupported = true;
#endif
// DDS texture compression support
@@ -1137,11 +1137,11 @@ void rlglInit(int width, int height)
glGetFloatv(0x84FF, &maxAnisotropicLevel); // GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT
}
- // Debug marker support
- if(strcmp(extList[i], (const char *)"GL_EXT_debug_marker") == 0) debugMarkerSupported = true;
-
// Clamp mirror wrap mode supported
if (strcmp(extList[i], (const char *)"GL_EXT_texture_mirror_clamp") == 0) texClampMirrorSupported = true;
+
+ // Debug marker support
+ if(strcmp(extList[i], (const char *)"GL_EXT_debug_marker") == 0) debugMarkerSupported = true;
}
#ifdef _MSC_VER