Example usage for org.lwjgl.opengl GL11 glCopyTexSubImage1D

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

Introduction

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

Prototype

public static void glCopyTexSubImage1D(@NativeType("GLenum") int target, @NativeType("GLint") int level,
        @NativeType("GLint") int xoffset, @NativeType("GLint") int x, @NativeType("GLint") int y,
        @NativeType("GLsizei") int width) 

Source Link

Document

Respecifies a rectangular subregion of an existing texel array.

Usage

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

License:Open Source License

public static void glCopyTexSubImage1D(int a, int b, int c, int d, int e, int f) {
    GL11.glCopyTexSubImage1D(a, b, c, d, e, f);
}