Example usage for org.lwjgl.opengl GL11 glPrioritizeTextures

List of usage examples for org.lwjgl.opengl GL11 glPrioritizeTextures

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL11 glPrioritizeTextures.

Prototype

public static void glPrioritizeTextures(@NativeType("GLuint const *") int[] textures,
        @NativeType("GLfloat const *") float[] priorities) 

Source Link

Document

Array version of: #glPrioritizeTextures PrioritizeTextures

Usage

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

License:Open Source License

public static void glPrioritizeTextures(IntBuffer a, FloatBuffer b) {
    GL11.glPrioritizeTextures(a, b);
}