Skip to content

Commit

Permalink
Require OpenGL 1.2 for GL_CLAMP_TO_EDGE
Browse files Browse the repository at this point in the history
  • Loading branch information
zturtleman committed May 28, 2018
1 parent 77de501 commit ce1d540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/sdl/sdl_glimp.c
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ static qboolean GLimp_GetProcAddresses( void ) {
sscanf( version, "%d.%d", &qglMajorVersion, &qglMinorVersion );
}

if ( QGL_VERSION_ATLEAST( 1, 1 ) ) {
if ( QGL_VERSION_ATLEAST( 1, 2 ) ) {
QGL_1_1_PROCS;
QGL_DESKTOP_1_1_PROCS;
} else if ( qglesMajorVersion == 1 && qglesMinorVersion >= 1 ) {
Expand Down

0 comments on commit ce1d540

Please sign in to comment.