Example usage for org.lwjgl.opengl GL30 glColorMaski

List of usage examples for org.lwjgl.opengl GL30 glColorMaski

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL30 glColorMaski.

Prototype

public static void glColorMaski(@NativeType("GLuint") int buf, @NativeType("GLboolean") boolean r,
        @NativeType("GLboolean") boolean g, @NativeType("GLboolean") boolean b,
        @NativeType("GLboolean") boolean a) 

Source Link

Document

Enables and disables writing of frame buffer color components.

Usage

From source file:tk.ivybits.engine.gl.GL.java

License:Open Source License

public static void glColorMaski(int a, boolean b, boolean c, boolean d, boolean e) {
    GL30.glColorMaski(a, b, c, d, e);
}