OpenGLRaw-3.3.0.0: A raw binding for the OpenGL graphics system

Copyright(c) Sven Panne 2018
LicenseBSD3
MaintainerSven Panne <svenpanne@gmail.com>
Stabilitystable
Portabilityportable
Safe HaskellNone
LanguageHaskell2010

Graphics.GL.ARB.DrawBuffersBlend

Contents

Description

 

Synopsis

Extension Support

gl_ARB_draw_buffers_blend :: Bool Source #

Is the ARB_draw_buffers_blend extension supported? Note that in the presence of multiple contexts with different capabilities, this might be wrong. Use glGetARBDrawBuffersBlend in those cases instead.

Functions

glBlendEquationSeparateiARB Source #

Arguments

:: MonadIO m 
=> GLuint

buf.

-> GLenum

modeRGB of type BlendEquationModeEXT.

-> GLenum

modeAlpha of type BlendEquationModeEXT.

-> m () 

This command is an alias for glBlendEquationSeparatei.

glBlendEquationiARB Source #

Arguments

:: MonadIO m 
=> GLuint

buf.

-> GLenum

mode of type BlendEquationModeEXT.

-> m () 

This command is an alias for glBlendEquationi.

glBlendFuncSeparateiARB Source #

Arguments

:: MonadIO m 
=> GLuint

buf.

-> GLenum

srcRGB of type BlendingFactor.

-> GLenum

dstRGB of type BlendingFactor.

-> GLenum

srcAlpha of type BlendingFactor.

-> GLenum

dstAlpha of type BlendingFactor.

-> m () 

This command is an alias for glBlendFuncSeparatei.

glBlendFunciARB Source #

Arguments

:: MonadIO m 
=> GLuint

buf.

-> GLenum

src of type BlendingFactor.

-> GLenum

dst of type BlendingFactor.

-> m () 

This command is an alias for glBlendFunci.