Example usage for org.lwjgl.opengl GL11 glCopyTexImage1D

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

Introduction

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

Prototype

public static void glCopyTexImage1D(@NativeType("GLenum") int target, @NativeType("GLint") int level,
        @NativeType("GLenum") int internalFormat, @NativeType("GLint") int x, @NativeType("GLint") int y,
        @NativeType("GLsizei") int width, @NativeType("GLint") int border) 

Source Link

Document

Defines a one-dimensional texel array in exactly the manner of #glTexImage1D TexImage1D , except that the image data are taken from the framebuffer rather than from client memory.

Usage

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

License:Open Source License

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