configure: allow C{,XX}FLAGS override
[mesa.git] / src / glut / glx / glut_warp.c
1
2 /* Copyright (c) Mark J. Kilgard, 1996, 1997. */
3
4 /* This program is freely distributable without licensing fees
5 and is provided without guarantee or warrantee expressed or
6 implied. This program is -not- in the public domain. */
7
8 #include <stdlib.h>
9 #include <stdarg.h>
10 #include <stdio.h>
11
12 #include "glutint.h"
13
14 /* CENTRY */
15 void GLUTAPIENTRY
16 glutWarpPointer(int x, int y)
17 {
18 XWarpPointer(__glutDisplay, None, __glutCurrentWindow->win,
19 0, 0, 0, 0, x, y);
20 XFlush(__glutDisplay);
21 }
22
23 /* ENDCENTRY */