diff options
author | marha <marha@users.sourceforge.net> | 2009-11-20 07:24:04 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-11-20 07:24:04 +0000 |
commit | da051c6af428703e746c6a1677e1dce032b86c41 (patch) | |
tree | e3c65ef9cd25ca896b7bba11ef434e9461978010 /xorg-server/hw/xwin/glx/winpriv.h | |
parent | 31aa34bf85ba97c12457132930646758b270b8af (diff) | |
parent | 2e4def74ad9278c142d07ffa91f51035dc49cf77 (diff) | |
download | vcxsrv-da051c6af428703e746c6a1677e1dce032b86c41.tar.gz vcxsrv-da051c6af428703e746c6a1677e1dce032b86c41.tar.bz2 vcxsrv-da051c6af428703e746c6a1677e1dce032b86c41.zip |
svn merge ^/branches/released
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); + |