|
static void | BlendBarrier (void) |
| Specified boundaries between blending passes. More...
|
|
static void | BlendEquation (OneOf< GLenum, std::tuple< oglplus::BlendEquation, oglplus::BlendEquationAdvanced > > eq) |
| Sets the blend equation. More...
|
|
static void | BlendEquationSeparate (oglplus::BlendEquation eq_rgb, oglplus::BlendEquation eq_alpha) |
| Sets the blend equation separate for RGB and alpha. More...
|
|
static void | BlendEquation (GLuint buffer, OneOf< GLenum, std::tuple< oglplus::BlendEquation, oglplus::BlendEquationAdvanced > > eq) |
| Sets the blend equation for a particular draw buffer . More...
|
|
static void | BlendEquationSeparate (GLuint buffer, oglplus::BlendEquation eq_rgb, oglplus::BlendEquation eq_alpha) |
| Sets the blend equation separate for RGB and alpha for a buffer . More...
|
|
static void | BlendFunc (BlendFunction src, BlendFunction dst) |
| Sets the blend function. More...
|
|
static void | BlendFuncSeparate (BlendFunction src_rgb, BlendFunction dst_rgb, BlendFunction src_alpha, BlendFunction dst_alpha) |
| Sets the blend function separate for RGB and alpha. More...
|
|
static void | BlendFunc (GLuint buffer, BlendFunction src, BlendFunction dst) |
| Sets the blend function for a particular buffer . More...
|
|
static void | BlendFuncSeparate (GLuint buffer, BlendFunction src_rgb, BlendFunction dst_rgb, BlendFunction src_alpha, BlendFunction dst_alpha) |
| Sets the blend function separate for RGB and alpha for a buffer . More...
|
|
static void | BlendColor (GLclampf r, GLclampf g, GLclampf b, GLclampf a) |
| Sets the blend color. More...
|
|
Wrapper for blending operations.