glIsEnabled(GL_CULL_FACE) should return the status of culling, not fog.

This commit is contained in:
Lawrence Sebald 2017-05-23 09:11:52 -04:00
parent c960b24f07
commit a1185f3369

View File

@ -9,9 +9,6 @@
#include "gl.h"
#include "gl-api.h"
#include <malloc.h>
#include <stdio.h>
//===============================================================================//
//== Enable Bit Flags ==//
@ -128,7 +125,7 @@ GLboolean APIENTRY glIsEnabled(GLenum cap) {
return _glKosEnabledScissorTest() ? GL_TRUE : GL_FALSE;
case GL_CULL_FACE:
return _glKosEnabledFog() ? GL_TRUE : GL_FALSE;
return _glKosEnabledCulling() ? GL_TRUE : GL_FALSE;
case GL_FOG:
return _glKosEnabledFog() ? GL_TRUE : GL_FALSE;