Fix the GL error assert macro

This commit is contained in:
Cameron Gutman 2016-05-10 01:33:04 -04:00
parent 64d9f18c39
commit d08d1f3132

View File

@ -19,7 +19,7 @@ static unsigned int s_LastSpsLength;
static unsigned int s_LastPpsLength;
static uint64_t s_LastPaintFinishedTime;
#define assertNoGLError() assert(!g_Instance->m_GlesApi->GetError(g_Instance->m_Graphics3D->pp_resource()))
#define assertNoGLError() assert(!glGetError())
static const char k_VertexShader[] =
"varying vec2 v_texCoord; \n"