glgsg: Fix typo causing SSBO support not always detected

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

View File

@ -2146,7 +2146,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");