Package org.lwjgl.opengl
Class EXTDrawBuffers2
- java.lang.Object
-
- org.lwjgl.opengl.EXTDrawBuffers2
-
public class EXTDrawBuffers2 extends java.lang.ObjectNative bindings to the EXT_draw_buffers2 extension.This extension builds upon the ARB_draw_buffers extension and provides separate blend enables and color write masks for each color output. In ARB_draw_buffers (part of OpenGL 2.0), separate values can be written to each color buffer, but the blend enable and color write mask are global and apply to all color outputs.
While this extension does provide separate blend enables, it does not provide separate blend functions or blend equations per color output.
Requires
OpenGL 2.0.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static voidglColorMaskIndexedEXT(int index, boolean r, boolean g, boolean b, boolean a)static voidglDisableIndexedEXT(int target, int index)static voidglEnableIndexedEXT(int target, int index)static booleanglGetBooleanIndexedEXT(int target, int index)static voidglGetBooleanIndexedvEXT(int target, int index, java.nio.ByteBuffer data)static intglGetIntegerIndexedEXT(int target, int index)static voidglGetIntegerIndexedvEXT(int target, int index, int[] data)Array version of:GetIntegerIndexedvEXTstatic voidglGetIntegerIndexedvEXT(int target, int index, java.nio.IntBuffer data)static booleanglIsEnabledIndexedEXT(int target, int index)
-
-
-
Method Detail
-
glColorMaskIndexedEXT
public static void glColorMaskIndexedEXT(int index, boolean r, boolean g, boolean b, boolean a)
-
glGetBooleanIndexedvEXT
public static void glGetBooleanIndexedvEXT(int target, int index, java.nio.ByteBuffer data)
-
glGetBooleanIndexedEXT
public static boolean glGetBooleanIndexedEXT(int target, int index)
-
glGetIntegerIndexedvEXT
public static void glGetIntegerIndexedvEXT(int target, int index, java.nio.IntBuffer data)
-
glGetIntegerIndexedEXT
public static int glGetIntegerIndexedEXT(int target, int index)
-
glEnableIndexedEXT
public static void glEnableIndexedEXT(int target, int index)
-
glDisableIndexedEXT
public static void glDisableIndexedEXT(int target, int index)
-
glIsEnabledIndexedEXT
public static boolean glIsEnabledIndexedEXT(int target, int index)
-
glGetIntegerIndexedvEXT
public static void glGetIntegerIndexedvEXT(int target, int index, int[] data)Array version of:GetIntegerIndexedvEXT
-
-