We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25bcfa3 commit 52e83edCopy full SHA for 52e83ed
impl/gs_graphics_impl.h
@@ -944,7 +944,7 @@ gs_graphics_storage_buffer_create_impl(const gs_graphics_storage_buffer_desc_t*
944
945
glGenBuffers(1, &sbo.buffer);
946
947
- // CHECK_GL_CORE(
+ CHECK_GL_CORE(
948
glBindBuffer(GL_SHADER_STORAGE_BUFFER, sbo.buffer);
949
950
// Check for desc flags to map buffer
@@ -980,7 +980,7 @@ gs_graphics_storage_buffer_create_impl(const gs_graphics_storage_buffer_desc_t*
980
}
981
982
glBindBuffer(GL_SHADER_STORAGE_BUFFER, 0);
983
- // );
+ );
984
985
memcpy(sbo.name, desc->name, 64);
986
sbo.access = desc->access;
0 commit comments