Example usage for org.lwjgl.opengl GL32 glSampleMaski

List of usage examples for org.lwjgl.opengl GL32 glSampleMaski

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL32 glSampleMaski.

Prototype

public static void glSampleMaski(@NativeType("GLuint") int index, @NativeType("GLbitfield") int mask) 

Source Link

Document

Sets the value of a sub-word of the sample mask.

Usage

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

License:Open Source License

public static void glSampleMaski(int a, int b) {
    GL32.glSampleMaski(a, b);
}