cur_cursor = cidx;
}
+void glutWarpPointer(int x, int y)
+{
+ XWarpPointer(dpy, None, win, 0, 0, 0, 0, x, y);
+}
+
void glutSetColor(int idx, float r, float g, float b)
{
XColor color;
}
}
+void glutWarpPointer(int x, int y)
+{
+ SetCursorPos(x, y);
+}
+
void glutSetColor(int idx, float r, float g, float b)
{
PALETTEENTRY col;
void glutSetIconTitle(const char *title);
void glutSetCursor(int cursor);
void glutSetColor(int idx, float r, float g, float b);
+void glutWarpPointer(int x, int y);
float glutGetColor(int idx, int comp);
void glutIgnoreKeyRepeat(int ignore);