winemac.drv: Don't bother storing the OpenGL version.

Signed-off-by: Charles Davis <cdavis5x@gmail.com>
Signed-off-by: Ken Thomases <ken@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Charles Davis 2016-02-15 01:49:02 -07:00 committed by Alexandre Julliard
parent b190a72bfe
commit d8eac06940
1 changed files with 3 additions and 6 deletions

View File

@ -44,7 +44,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(wgl);
struct gl_info {
char *glVersion;
char *glExtensions;
char wglExtensions[4096];
@ -1259,9 +1258,6 @@ static BOOL init_gl_info(void)
return FALSE;
}
str = (const char*)opengl_funcs.gl.p_glGetString(GL_VERSION);
gl_info.glVersion = HeapAlloc(GetProcessHeap(), 0, strlen(str) + 1);
strcpy(gl_info.glVersion, str);
str = (const char*)opengl_funcs.gl.p_glGetString(GL_EXTENSIONS);
length = strlen(str) + sizeof(legacy_extensions);
if (allow_vsync)
@ -1274,9 +1270,10 @@ static BOOL init_gl_info(void)
opengl_funcs.gl.p_glGetIntegerv(GL_MAX_VIEWPORT_DIMS, gl_info.max_viewport_dims);
TRACE("GL version : %s\n", gl_info.glVersion);
str = (const char*)opengl_funcs.gl.p_glGetString(GL_VERSION);
sscanf(str, "%u.%u", &gl_info.max_major, &gl_info.max_minor);
TRACE("GL version : %s\n", str);
TRACE("GL renderer : %s\n", opengl_funcs.gl.p_glGetString(GL_RENDERER));
sscanf(gl_info.glVersion, "%u.%u", &gl_info.max_major, &gl_info.max_minor);
CGLSetCurrentContext(old_context);
CGLReleaseContext(context);