https://git.reactos.org/?p=reactos.git;a=commitdiff;h=ce43bf6ba735dfb145d11e...
commit ce43bf6ba735dfb145d11ebfca24ecaae6d63fef Author: Belle Aerni belleaerni@gmail.com AuthorDate: Sat Sep 9 12:30:44 2023 -0700 Commit: GitHub noreply@github.com CommitDate: Sat Sep 9 22:30:44 2023 +0300
[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`. --- dll/opengl/mesa/misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dll/opengl/mesa/misc.c b/dll/opengl/mesa/misc.c index 0762d184a02..ccc60073019 100644 --- a/dll/opengl/mesa/misc.c +++ b/dll/opengl/mesa/misc.c @@ -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)) {