-------------------------------------------------------------------------------- -- | -- Module : Graphics.Rendering.OpenGL.Raw.EXT.BindableUniform -- Copyright : (c) Sven Panne 2015 -- License : BSD3 -- -- Maintainer : Sven Panne -- Stability : stable -- Portability : portable -- -- The extension. -- -------------------------------------------------------------------------------- module Graphics.Rendering.OpenGL.Raw.EXT.BindableUniform ( -- * Enums gl_MAX_BINDABLE_UNIFORM_SIZE_EXT, gl_MAX_FRAGMENT_BINDABLE_UNIFORMS_EXT, gl_MAX_GEOMETRY_BINDABLE_UNIFORMS_EXT, gl_MAX_VERTEX_BINDABLE_UNIFORMS_EXT, gl_UNIFORM_BUFFER_BINDING_EXT, gl_UNIFORM_BUFFER_EXT, -- * Functions glGetUniformBufferSizeEXT, glGetUniformOffsetEXT, glUniformBufferEXT ) where import Graphics.Rendering.OpenGL.Raw.Tokens import Graphics.Rendering.OpenGL.Raw.Functions