diff options
| author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-08-30 16:54:24 +0200 |
|---|---|---|
| committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-08-30 16:55:09 +0200 |
| commit | 5ecf04c925374c7a3c8d85765053e3cd9c952d67 (patch) | |
| tree | f55241c6ce2668f153ab8f9a966fb36aab8a801d /nx-X11/extras/Mesa_6.4.1/src/glut/os2/glut_warp.cpp | |
| parent | 709bce6cf17d472e65afc845fff87267499d9ad7 (diff) | |
| download | nx-libs-5ecf04c925374c7a3c8d85765053e3cd9c952d67.tar.gz nx-libs-5ecf04c925374c7a3c8d85765053e3cd9c952d67.tar.bz2 nx-libs-5ecf04c925374c7a3c8d85765053e3cd9c952d67.zip | |
nx-X11/extras: Drop Mesa-6.4.1 related files.
Diffstat (limited to 'nx-X11/extras/Mesa_6.4.1/src/glut/os2/glut_warp.cpp')
| -rw-r--r-- | nx-X11/extras/Mesa_6.4.1/src/glut/os2/glut_warp.cpp | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/nx-X11/extras/Mesa_6.4.1/src/glut/os2/glut_warp.cpp b/nx-X11/extras/Mesa_6.4.1/src/glut/os2/glut_warp.cpp deleted file mode 100644 index 885e169d3..000000000 --- a/nx-X11/extras/Mesa_6.4.1/src/glut/os2/glut_warp.cpp +++ /dev/null @@ -1,29 +0,0 @@ -
-/* Copyright (c) Mark J. Kilgard, 1996, 1997. */
-
-/* This program is freely distributable without licensing fees
- and is provided without guarantee or warrantee expressed or
- implied. This program is -not- in the public domain. */
-
-#include <stdlib.h>
-#include <stdarg.h>
-#include <stdio.h>
-
-#include "glutint.h"
-
-/* CENTRY */
-void GLUTAPIENTRY
-glutWarpPointer(int x, int y)
-{
-// XWarpPointer(__glutDisplay, None, __glutCurrentWindow->win,
-// 0, 0, 0, 0, x, y);
- POINTL point;
- point.x = x;
- point.y = y;
- WinMapWindowPoints(__glutCurrentWindow->win,HWND_DESKTOP,&point,1);
- WinSetPointerPos(HWND_DESKTOP, point.x, point.y);
-
- XFlush(__glutDisplay);
-}
-
-/* ENDCENTRY */
|
