Read that already. glfwPollEvents() gets called from the main thread every 100 ms....
<edit>Sorry, dlGetMousePos is a wrapper double x, y; glfwGetCursorPos(window, &x,...
double x, y; glfwGetCursorPos(window, &x, &y); printf("(%f,%f)\n", (float)x, (float)y);...
I have a current application which I would like to add OpenGL rendering to. It has...