LWJGL glfwGetCursorPos问题

时间:2015-12-02 18:33:30

标签: java glfw bytebuffer

由于某种原因(可能是因为我无能为力),这只会打印0.0 0.0

ByteBuffer x = ByteBuffer.allocate(8);
ByteBuffer y = ByteBuffer.allocate(8);
GLFW.glfwGetCursorPos(Window.window, x, y);
System.out.println(x.getDouble() + "   " + y.getDouble());

1 个答案:

答案 0 :(得分:0)

修正了它。我忘了调查事件了。 DERP。