mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-29 20:20:43 +00:00
return a version for GL_VERSION
This commit is contained in:
parent
63c3038ad8
commit
105ef11e0e
2 changed files with 4 additions and 0 deletions
|
@ -800,6 +800,8 @@ norm_glGetSeparableFilter (GLenum target, GLenum format, GLenum type, GLvoid * r
|
|||
const GLubyte *
|
||||
norm_glGetString (GLenum name)
|
||||
{
|
||||
if (name == GL_VERSION)
|
||||
return "1.4";
|
||||
return "";
|
||||
}
|
||||
|
||||
|
|
|
@ -953,6 +953,8 @@ const GLubyte *
|
|||
trace_glGetString (GLenum name)
|
||||
{
|
||||
TRACE;
|
||||
if (name == GL_VERSION)
|
||||
return "1.4";
|
||||
return "";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue