Example usage for org.lwjgl.opengl GL13 glSampleCoverage

List of usage examples for org.lwjgl.opengl GL13 glSampleCoverage

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL13 glSampleCoverage.

Prototype

public static void glSampleCoverage(@NativeType("GLfloat") float value,
        @NativeType("GLboolean") boolean invert) 

Source Link

Document

Specifies multisample coverage parameters.

Usage

From source file:com.badlogic.gdx.backends.jglfw.JglfwGL20.java

License:Apache License

public void glSampleCoverage(float value, boolean invert) {
    GL13.glSampleCoverage(value, invert);
}

From source file:com.badlogic.gdx.backends.lwjgl.LwjglGL10.java

License:Apache License

public final void glSampleCoverage(float value, boolean invert) {
    GL13.glSampleCoverage(value, invert);
}

From source file:io.root.gfx.glutils.GL.java

License:Apache License

public static void glSampleCoverage(float value, boolean invert) {
    GL13.glSampleCoverage(value, invert);
}

From source file:org.oscim.gdx.LwjglGL20.java

License:Apache License

public void sampleCoverage(float value, boolean invert) {
    GL13.glSampleCoverage(value, invert);
}

From source file:playn.java.JavaGL20.java

License:Apache License

@Override
public void glSampleCoverage(float value, boolean invert) {
    GL13.glSampleCoverage(value, invert);
}

From source file:processing.opengl.PLWJGL.java

License:Open Source License

@Override
public void sampleCoverage(float value, boolean invert) {
    GL13.glSampleCoverage(value, invert);
}

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

License:Open Source License

public static void glSampleCoverage(float a, boolean b) {
    GL13.glSampleCoverage(a, b);
}