Example usage for org.lwjgl.opengl GL43 glInvalidateFramebuffer

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

Introduction

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

Prototype

public static void glInvalidateFramebuffer(@NativeType("GLenum") int target,
        @NativeType("GLenum const *") int[] attachments) 

Source Link

Document

Array version of: #glInvalidateFramebuffer InvalidateFramebuffer

Usage

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

License:Apache License

@Override
public void glInvalidateFramebuffer(int target, int numAttachments, IntBuffer attachments) {
    GL43.glInvalidateFramebuffer(target, attachments);
}

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

License:Apache License

public static void glInvalidateFramebuffer(int target, int numAttachments, IntBuffer attachments) {
    GL43.glInvalidateFramebuffer(target, attachments);
}

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

License:Open Source License

public static void glInvalidateFramebuffer(int a, IntBuffer b) {
    GL43.glInvalidateFramebuffer(a, b);
}