fix SSBO test
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit

This commit is contained in:
austin 2024-09-12 15:31:44 -04:00
parent e18d06e454
commit ed29d1ffb3
2 changed files with 2 additions and 3 deletions

View File

@ -738,6 +738,8 @@ Fix audio handling bug
SSBO implementation
Rearch instanced actor
ParticleService implementation
Fix SSBO implementation misusing BufferUtils
# TODO

View File

@ -73,9 +73,6 @@ public class ShaderStorageBuffer implements UniformBlockBinding {
if(buffer != null){
//destroy opengl-side buffer
GL45.glDeleteBuffers(id);
//destroy java-side buffer
MemoryUtil.memFree(buffer);
//set the java-side buffer to be null
buffer = null;