{-# LANGUAGE CPP, ScopedTypeVariables, PatternSynonyms #-}
module Graphics.GL.Ext.ARB.TextureStorageMultisample (
gl_ARB_texture_storage_multisample
, glTexStorage2DMultisample
, glTexStorage3DMultisample
) where
import Data.Set
import Graphics.GL.Internal.Proc
import Graphics.GL.Internal.Shared
gl_ARB_texture_storage_multisample :: Bool
gl_ARB_texture_storage_multisample :: Bool
gl_ARB_texture_storage_multisample = String -> Set String -> Bool
forall a. Ord a => a -> Set a -> Bool
member String
"GL_ARB_texture_storage_multisample" Set String
extensions
{-# NOINLINE gl_ARB_texture_storage_multisample #-}