Example usage for org.lwjgl.opengl GL41 glGenProgramPipelines

List of usage examples for org.lwjgl.opengl GL41 glGenProgramPipelines

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL41 glGenProgramPipelines.

Prototype

public static void glGenProgramPipelines(@NativeType("GLuint *") int[] pipelines) 

Source Link

Document

Array version of: #glGenProgramPipelines GenProgramPipelines

Usage

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

License:Open Source License

public static void glGenProgramPipelines(IntBuffer a) {
    GL41.glGenProgramPipelines(a);
}