Example usage for org.lwjgl.opengl GL42 glBindImageTexture

List of usage examples for org.lwjgl.opengl GL42 glBindImageTexture

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL42 glBindImageTexture.

Prototype

public static void glBindImageTexture(@NativeType("GLuint") int unit, @NativeType("GLuint") int texture,
        @NativeType("GLint") int level, @NativeType("GLboolean") boolean layered,
        @NativeType("GLint") int layer, @NativeType("GLenum") int access, @NativeType("GLenum") int format) 

Source Link

Document

Binds a level of a texture to an image unit.

Usage

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

License:Open Source License

public static void glBindImageTexture(int a, int b, int c, boolean d, int e, int f, int g) {
    GL42.glBindImageTexture(a, b, c, d, e, f, g);
}