Skip to content

Commit

Permalink
add shader storage buffer to GlBuffer
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Green committed May 8, 2017
1 parent cad23ac commit e66e204
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/pangolin/gl/gl.h
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,8 @@ enum GlBufferType
GlElementArrayBuffer = GL_ELEMENT_ARRAY_BUFFER, // IBO's
#ifndef HAVE_GLES
GlPixelPackBuffer = GL_PIXEL_PACK_BUFFER, // PBO's
GlPixelUnpackBuffer = GL_PIXEL_UNPACK_BUFFER
GlPixelUnpackBuffer = GL_PIXEL_UNPACK_BUFFER,
GlShaderStorageBuffer = GL_SHADER_STORAGE_BUFFER
#endif
};

Expand Down

0 comments on commit e66e204

Please sign in to comment.