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