public class OESDrawBuffersIndexed
extends java.lang.Object
This extension builds upon the EXT_draw_buffers extension. In EXT_draw_buffers (part of OpenGL ES 3.0), separate values could be written to each color buffer, but the blend enable, blend functions, blend equations and color write masks are global and apply to all color outputs.
This extension provides the ability to independently
This extension introduces indexed versions of the enable, blend equation, blend function, and color mask commands, as well as associated indexed queries in order to control and query these states independently on a per-color output basis.
| Modifier and Type | Method and Description |
|---|---|
static void |
glBlendEquationiOES(int buf,
int mode) |
static void |
glBlendEquationSeparateiOES(int buf,
int modeRGB,
int modeAlpha) |
static void |
glBlendFunciOES(int buf,
int src,
int dst) |
static void |
glBlendFuncSeparateiOES(int buf,
int srcRGB,
int dstRGB,
int srcAlpha,
int dstAlpha) |
static void |
glColorMaskiOES(int index,
boolean r,
boolean g,
boolean b,
boolean a) |
static void |
glDisableiOES(int target,
int index) |
static void |
glEnableiOES(int target,
int index) |
static boolean |
glIsEnablediOES(int target,
int index) |
public static void glEnableiOES(int target,
int index)
public static void glDisableiOES(int target,
int index)
public static void glBlendEquationiOES(int buf,
int mode)
public static void glBlendEquationSeparateiOES(int buf,
int modeRGB,
int modeAlpha)
public static void glBlendFunciOES(int buf,
int src,
int dst)
public static void glBlendFuncSeparateiOES(int buf,
int srcRGB,
int dstRGB,
int srcAlpha,
int dstAlpha)
public static void glColorMaskiOES(int index,
boolean r,
boolean g,
boolean b,
boolean a)
public static boolean glIsEnablediOES(int target,
int index)
Copyright LWJGL. All Rights Reserved. License terms.