Example usage for org.lwjgl.opengl GL43 glCopyImageSubData

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

Introduction

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

Prototype

public static void glCopyImageSubData(@NativeType("GLuint") int srcName, @NativeType("GLenum") int srcTarget,
        @NativeType("GLint") int srcLevel, @NativeType("GLint") int srcX, @NativeType("GLint") int srcY,
        @NativeType("GLint") int srcZ, @NativeType("GLuint") int dstName, @NativeType("GLenum") int dstTarget,
        @NativeType("GLint") int dstLevel, @NativeType("GLint") int dstX, @NativeType("GLint") int dstY,
        @NativeType("GLint") int dstZ, @NativeType("GLsizei") int srcWidth,
        @NativeType("GLsizei") int srcHeight, @NativeType("GLsizei") int srcDepth) 

Source Link

Document

Performs a raw data copy between two images.

Usage

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

License:Open Source License

public static void glCopyImageSubData(int a, int b, int c, int d, int e, int f, int g, int h, int i, int j,
        int k, int l, int m, int n, int o) {
    GL43.glCopyImageSubData(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o);
}