List of usage examples for org.lwjgl.opengl GL15 glGenQueries
public static void glGenQueries(@NativeType("GLuint *") int[] ids)
From source file:com.badlogic.gdx.backends.jglfw.JglfwGL30.java
License:Apache License
@Override public void glGenQueries(int n, IntBuffer ids) { GL15.glGenQueries(ids); }
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glGenQueries(IntBuffer a) { GL15.glGenQueries(a); }