{-# LANGUAGE CPP, ScopedTypeVariables, PatternSynonyms #-}
module Graphics.GL.Ext.ARB.BufferStorage (
gl_ARB_buffer_storage
, glBufferStorage
, pattern GL_BUFFER_IMMUTABLE_STORAGE
, pattern GL_BUFFER_STORAGE_FLAGS
, pattern GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT
, pattern GL_CLIENT_STORAGE_BIT
, pattern GL_DYNAMIC_STORAGE_BIT
, pattern GL_MAP_COHERENT_BIT
, pattern GL_MAP_PERSISTENT_BIT
, pattern GL_MAP_READ_BIT
, pattern GL_MAP_WRITE_BIT
) where
import Data.Set
import Graphics.GL.Internal.Proc
import Graphics.GL.Internal.Shared
gl_ARB_buffer_storage :: Bool
gl_ARB_buffer_storage :: Bool
gl_ARB_buffer_storage = String -> Set String -> Bool
forall a. Ord a => a -> Set a -> Bool
member String
"GL_ARB_buffer_storage" Set String
extensions
{-# NOINLINE gl_ARB_buffer_storage #-}