mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-21 06:14:10 +00:00
PBO/VBO checks now query OpenGL directly instead of keeping track of the currently bound buffers
This commit is contained in:
parent
1d521cf604
commit
d633986260
13 changed files with 54 additions and 109 deletions
|
|
@ -3,10 +3,13 @@
|
|||
package org.lwjgl.opengl;
|
||||
|
||||
import org.lwjgl.LWJGLException;
|
||||
import org.lwjgl.BufferUtils;
|
||||
import java.util.Set;
|
||||
import java.nio.IntBuffer;
|
||||
|
||||
public class ContextCapabilities {
|
||||
final StateTracker tracker;
|
||||
final IntBuffer scratch_int_buffer = BufferUtils.createIntBuffer(16);
|
||||
|
||||
public final boolean GL_ARB_color_buffer_float;
|
||||
public final boolean GL_ARB_depth_texture;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue