{-# LANGUAGE CPP, ScopedTypeVariables, PatternSynonyms #-}
module Graphics.GL.Ext.ARB.VertexArrayObject (
gl_ARB_vertex_array_object
, glBindVertexArray
, glDeleteVertexArrays
, glGenVertexArrays
, glIsVertexArray
, pattern GL_VERTEX_ARRAY_BINDING
) where
import Data.Set
import Graphics.GL.Internal.Proc
import Graphics.GL.Internal.Shared
gl_ARB_vertex_array_object :: Bool
gl_ARB_vertex_array_object :: Bool
gl_ARB_vertex_array_object = [Char] -> Set [Char] -> Bool
forall a. Ord a => a -> Set a -> Bool
member "GL_ARB_vertex_array_object" Set [Char]
extensions
{-# NOINLINE gl_ARB_vertex_array_object #-}