android: implement fgPlatformSetCursor/fgPlatformWarpPointer

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1279 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
beuc 2012-05-02 14:49:15 +00:00
parent ae35d72efd
commit 260c71b27e

View File

@ -28,11 +28,14 @@
void fgPlatformSetCursor ( SFG_Window *window, int cursorID )
{
fprintf(stderr, "fgPlatformSetCursor: STUB\n");
// No-op: no visible cursor on touchscreens
}
void fgPlatformWarpPointer ( int x, int y )
{
fprintf(stderr, "fgPlatformWarpPointer: STUB\n");
/* Even if there's no pointer on touchscreen, keep track of the
last position, e.g. for menus */
SFG_Window* window = fgStructure.CurrentWindow;
window->State.MouseX = x;
window->State.MouseY = y;
}