mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
[MESA] Change reported OpenGL version to 1.1.0 (#5675)
Fixes failing opengl32:sw_extensions test. The test expects version `1.1.0` which is what Windows reports, and ReactOS Mesa3D was reporting just `1.1`.
This commit is contained in:
parent
4976fba59e
commit
ce43bf6ba7
1 changed files with 1 additions and 1 deletions
|
@ -313,7 +313,7 @@ const GLubyte *gl_GetString( GLcontext *ctx, GLenum name )
|
|||
{
|
||||
static char renderer[1000];
|
||||
static char *vendor = "Brian Paul & ReactOS Developers";
|
||||
static char *version = "1.1";
|
||||
static char *version = "1.1.0";
|
||||
static char *extensions = "GL_EXT_paletted_texture GL_EXT_bgra GL_WIN_swap_hint";
|
||||
|
||||
if (INSIDE_BEGIN_END(ctx)) {
|
||||
|
|
Loading…
Reference in a new issue