{-# LANGUAGE CPP, ScopedTypeVariables, PatternSynonyms #-}
module Graphics.GL.Ext.ARB.VertexAttribBinding (
gl_ARB_vertex_attrib_binding
, glBindVertexBuffer
, glVertexAttribBinding
, glVertexAttribFormat
, glVertexAttribIFormat
, glVertexAttribLFormat
, glVertexBindingDivisor
, pattern GL_MAX_VERTEX_ATTRIB_BINDINGS
, pattern GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET
, pattern GL_VERTEX_ATTRIB_BINDING
, pattern GL_VERTEX_ATTRIB_RELATIVE_OFFSET
, pattern GL_VERTEX_BINDING_DIVISOR
, pattern GL_VERTEX_BINDING_OFFSET
, pattern GL_VERTEX_BINDING_STRIDE
) where
import Data.Set
import Graphics.GL.Internal.Proc
import Graphics.GL.Internal.Shared
gl_ARB_vertex_attrib_binding :: Bool
gl_ARB_vertex_attrib_binding :: Bool
gl_ARB_vertex_attrib_binding = [Char] -> Set [Char] -> Bool
forall a. Ord a => a -> Set a -> Bool
member "GL_ARB_vertex_attrib_binding" Set [Char]
extensions
{-# NOINLINE gl_ARB_vertex_attrib_binding #-}