gl-0.8.0: Complete OpenGL raw bindings

Safe HaskellNone
LanguageHaskell2010

Graphics.GL.Ext.SGIS.TextureColorMask

Contents

Synopsis

Extension Support

gl_SGIS_texture_color_mask :: Bool Source #

Checks that the GL_SGIS_texture_color_mask extension is available.

GL_SGIS_texture_color_mask

glTextureColorMaskSGIS :: MonadIO m => GLboolean -> GLboolean -> GLboolean -> GLboolean -> m () Source #

Usage: glTextureColorMaskSGIS red green blue alpha

The parameter red is a Boolean, one of: GL_FALSE, GL_TRUE.

The parameter green is a Boolean, one of: GL_FALSE, GL_TRUE.

The parameter blue is a Boolean, one of: GL_FALSE, GL_TRUE.

The parameter alpha is a Boolean, one of: GL_FALSE, GL_TRUE.

pattern GL_TEXTURE_COLOR_WRITEMASK_SGIS :: forall a. (Num a, Eq a) => a Source #