List of usage examples for org.lwjgl.opengl GL20 glGetVertexAttribPointerv
public static void glGetVertexAttribPointerv(@NativeType("GLuint") int index, @NativeType("GLenum") int pname, @NativeType("void **") PointerBuffer pointer)
From source file:com.badlogic.gdx.backends.jglfw.JglfwGL20.java
License:Apache License
public void glGetVertexAttribPointerv(int index, int pname, Buffer pointer) { GL20.glGetVertexAttribPointerv(index, pname, (ByteBuffer) pointer); }