Example usage for org.lwjgl.opengl GL43 glInvalidateSubFramebuffer

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

Introduction

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

Prototype

public static void glInvalidateSubFramebuffer(@NativeType("GLenum") int target,
        @NativeType("GLenum const *") int[] attachments, @NativeType("GLint") int x, @NativeType("GLint") int y,
        @NativeType("GLsizei") int width, @NativeType("GLsizei") int height) 

Source Link

Document

Array version of: #glInvalidateSubFramebuffer InvalidateSubFramebuffer

Usage

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

License:Apache License

@Override
public void glInvalidateSubFramebuffer(int target, int numAttachments, IntBuffer attachments, int x, int y,
        int width, int height) {
    GL43.glInvalidateSubFramebuffer(target, attachments, x, y, width, height);
}

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

License:Apache License

public static void glInvalidateSubFramebuffer(int target, int numAttachments, IntBuffer attachments, int x,
        int y, int width, int height) {
    GL43.glInvalidateSubFramebuffer(target, attachments, x, y, width, height);
}

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

License:Open Source License

public static void glInvalidateSubFramebuffer(int a, IntBuffer b, int c, int d, int e, int f) {
    GL43.glInvalidateSubFramebuffer(a, b, c, d, e, f);
}