Example usage for org.lwjgl.opengl GL20 glDrawBuffers

List of usage examples for org.lwjgl.opengl GL20 glDrawBuffers

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL20 glDrawBuffers.

Prototype

public static void glDrawBuffers(@NativeType("GLenum const *") int[] bufs) 

Source Link

Document

Array version of: #glDrawBuffers DrawBuffers

Usage

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

License:Open Source License

public static void glDrawBuffers(int a) {
    GL20.glDrawBuffers(a);
}

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

License:Open Source License

public static void glDrawBuffers(IntBuffer a) {
    GL20.glDrawBuffers(a);
}