glgsg: Fix typo causing SSBO support not always detected

This commit is contained in:
rdb 2025-10-06 21:01:20 +02:00
parent e661d02815
commit e68a3db7c9
1 changed files with 1 additions and 1 deletions

View File

@ -2438,7 +2438,7 @@ reset() {
#ifndef OPENGLES
// Check for SSBOs.
if (is_at_least_gl_version(4, 3) || has_extension("ARB_shader_storage_buffer_object")) {
if (is_at_least_gl_version(4, 3) || has_extension("GL_ARB_shader_storage_buffer_object")) {
_supports_shader_buffers = true;
_glGetProgramInterfaceiv = (PFNGLGETPROGRAMINTERFACEIVPROC)
get_extension_func("glGetProgramInterfaceiv");