diff options
author | marha <marha@users.sourceforge.net> | 2009-11-20 07:14:40 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-11-20 07:14:40 +0000 |
commit | 2e4def74ad9278c142d07ffa91f51035dc49cf77 (patch) | |
tree | 72b1c06da6e6232e9ff1c6263f68c2eb9bfbe10e /xorg-server/hw/xwin/glx/winpriv.h | |
parent | 578938f1cdd5a06dd6fa28167d575ec980322a5d (diff) | |
download | vcxsrv-2e4def74ad9278c142d07ffa91f51035dc49cf77.tar.gz vcxsrv-2e4def74ad9278c142d07ffa91f51035dc49cf77.tar.bz2 vcxsrv-2e4def74ad9278c142d07ffa91f51035dc49cf77.zip |
Checked in glx of cygwin-aiglx branch of git://anongit.freedesktop.org/~jturney/xserver
Diffstat (limited to 'xorg-server/hw/xwin/glx/winpriv.h')
-rw-r--r-- | xorg-server/hw/xwin/glx/winpriv.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/xorg-server/hw/xwin/glx/winpriv.h b/xorg-server/hw/xwin/glx/winpriv.h new file mode 100644 index 000000000..9cb2981ad --- /dev/null +++ b/xorg-server/hw/xwin/glx/winpriv.h @@ -0,0 +1,17 @@ +/* + * Export window information for the Windows-OpenGL GLX implementation. + * + * Authors: Alexander Gottwald + */ + +#include <X11/Xwindows.h> +#include <windowstr.h> + +typedef struct +{ + HWND hwnd; +} winWindowInfoRec, *winWindowInfoPtr; + +void winGetWindowInfo(WindowPtr pWin, winWindowInfoPtr pWinInfo); +Bool winCheckScreenAiglxIsSupported(ScreenPtr pScreen); + |