Example usage for org.lwjgl.opengl GL12 glCopyTexSubImage3D

List of usage examples for org.lwjgl.opengl GL12 glCopyTexSubImage3D

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL12 glCopyTexSubImage3D.

Prototype

public static void glCopyTexSubImage3D(@NativeType("GLenum") int target, @NativeType("GLint") int level,
        @NativeType("GLint") int xoffset, @NativeType("GLint") int yoffset, @NativeType("GLint") int zoffset,
        @NativeType("GLint") int x, @NativeType("GLint") int y, @NativeType("GLsizei") int width,
        @NativeType("GLsizei") int height) 

Source Link

Document

Respecifies a rectangular subregion of a slice of an existing 3D texel array.

Usage

From source file:com.badlogic.gdx.backends.jglfw.JglfwGL30.java

License:Apache License

@Override
public void glCopyTexSubImage3D(int target, int level, int xoffset, int yoffset, int zoffset, int x, int y,
        int width, int height) {
    GL12.glCopyTexSubImage3D(target, level, xoffset, yoffset, zoffset, x, y, width, height);
}

From source file:io.root.gfx.glutils.GL.java

License:Apache License

public static void glCopyTexSubImage3D(int target, int level, int xoffset, int yoffset, int zoffset, int x,
        int y, int width, int height) {
    GL12.glCopyTexSubImage3D(target, level, xoffset, yoffset, zoffset, x, y, width, height);
}

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

License:Open Source License

public static void glCopyTexSubImage3D(int a, int b, int c, int d, int e, int f, int g, int h, int i) {
    GL12.glCopyTexSubImage3D(a, b, c, d, e, f, g, h, i);
}