17 Jun
2023
17 Jun
'23
5:02 a.m.
Alex Henrie (@alexhenrie) commented about dlls/opengl32/unix_wgl.c:
memcpy( p, extensions, end - extensions ); p[end - extensions] = 0;
- if (!has_extension( disabled, p, strlen( p ) )) + /* We do not support GL_MAP_PERSISTENT_BIT, and hence + * ARB_buffer_storage, on wow64. */ + if (is_win64 && is_wow64() && (!strcmp( p, "GL_ARB_buffer_storage" ) || !strcmp( p, "GL_EXT_buffer_storage" ))) + { + TRACE( "-- %s (disabled due to wow64)\n", p );
Should this be FIXME? (Is it something that we'd like to support in the future?) -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3053#note_35996