{-# 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 = String -> Set String -> Bool
forall a. Ord a => a -> Set a -> Bool
member String
"GL_ARB_texture_storage" Set String
extensions
{-# NOINLINE gl_ARB_texture_storage #-}