--------------------------------------------------------------------------------
-- |
-- Module      :  Graphics.Rendering.OpenGL.GL.Texturing.Application
-- Copyright   :  (c) Sven Panne 2002-2019
-- License     :  BSD3
-- 
-- Maintainer  :  Sven Panne <svenpanne@gmail.com>
-- Stability   :  stable
-- Portability :  portable
--
-- This module corresponds to section 3.8.15 (Texture Application) of the
-- OpenGL 2.1 specs.
--
--------------------------------------------------------------------------------

module Graphics.Rendering.OpenGL.GL.Texturing.Application (
   texture
) where

import Data.StateVar
import Graphics.Rendering.OpenGL.GL.Capability
import Graphics.Rendering.OpenGL.GL.Texturing.TextureTarget

--------------------------------------------------------------------------------

texture :: ParameterizedTextureTarget t => t -> StateVar Capability
texture :: forall t. ParameterizedTextureTarget t => t -> StateVar Capability
texture = EnableCap -> StateVar Capability
makeCapability forall b c a. (b -> c) -> (a -> b) -> a -> c
. forall t. ParameterizedTextureTarget t => t -> EnableCap
marshalParameterizedTextureTargetEnableCap