[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:
Belle Aerni 2023-09-09 12:30:44 -07:00 committed by GitHub
parent 4976fba59e
commit ce43bf6ba7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)) {