Hello,
im trying to get the current modelview matrix.
i tried something like this
private ByteBuffer tmp = ByteBuffer.allocateDirect(4*16);
private FloatBuffer store = tmp.asFloatBuffer();
...
glGetFloat(GL_MODELVIEW, store);
but that gives me a enum Error (1280).
Any idea how to solve this?
