OpenGL: remove runtime check for EXT_gpu_shader4

It’s checked at startup, so is guaranteed to be true at runtime.

Part of T49012
This commit is contained in:
Mike Erwin 2016-08-04 20:27:24 -04:00
parent 32757d488f
commit 58697444bb
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ static void gpu_shader_standard_extensions(char defines[MAX_EXT_DEFINE_LENGTH],
strcat(defines, "#extension GL_ARB_draw_instanced: enable\n");
}
if (!GLEW_VERSION_3_0 && GLEW_EXT_gpu_shader4) {
if (!GLEW_VERSION_3_0) {
strcat(defines, "#extension GL_EXT_gpu_shader4: require\n");
}
}