List of usage examples for org.lwjgl.opengl GL43 glInvalidateFramebuffer
public static void glInvalidateFramebuffer(@NativeType("GLenum") int target, @NativeType("GLenum const *") int[] attachments)
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); }