glut_warp.c
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:1k
源码类别:

GIS编程

开发平台:

Visual C++

  1. /* Copyright (c) Mark J. Kilgard, 1996, 1997. */
  2. /* This program is freely distributable without licensing fees
  3.    and is provided without guarantee or warrantee expressed or
  4.    implied. This program is -not- in the public domain. */
  5. #include <stdlib.h>
  6. #include <stdarg.h>
  7. #include <stdio.h>
  8. #include "glutint.h"
  9. /* CENTRY */
  10. void APIENTRY
  11. glutWarpPointer(int x, int y)
  12. {
  13.   XWarpPointer(__glutDisplay, None, __glutCurrentWindow->win,
  14.     0, 0, 0, 0, x, y);
  15.   XFlush(__glutDisplay);
  16. }
  17. /* ENDCENTRY */