{-# LANGUAGE CPP, ScopedTypeVariables, PatternSynonyms #-}
module Graphics.GL.Ext.ARB.TextureStorage (
gl_ARB_texture_storage
, glTexStorage1D
, glTexStorage2D
, glTexStorage3D
, pattern GL_TEXTURE_IMMUTABLE_FORMAT
) where
import Data.Set
import Graphics.GL.Internal.Proc
import Graphics.GL.Internal.Shared
gl_ARB_texture_storage :: Bool
gl_ARB_texture_storage :: Bool
gl_ARB_texture_storage = [Char] -> Set [Char] -> Bool
forall a. Ord a => a -> Set a -> Bool
member "GL_ARB_texture_storage" Set [Char]
extensions
{-# NOINLINE gl_ARB_texture_storage #-}