Example usage for org.lwjgl.opengl GL43 glTextureView

List of usage examples for org.lwjgl.opengl GL43 glTextureView

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL43 glTextureView.

Prototype

public static void glTextureView(@NativeType("GLuint") int texture, @NativeType("GLenum") int target,
        @NativeType("GLuint") int origtexture, @NativeType("GLenum") int internalformat,
        @NativeType("GLuint") int minlevel, @NativeType("GLuint") int numlevels,
        @NativeType("GLuint") int minlayer, @NativeType("GLuint") int numlayers) 

Source Link

Document

Initializes a texture as a data alias of another texture's data store.

Usage

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

License:Open Source License

public static void glTextureView(int a, int b, int c, int d, int e, int f, int g, int h) {
    GL43.glTextureView(a, b, c, d, e, f, g, h);
}