17ec681f3Smrg/**************************************************************************
27ec681f3Smrg *
37ec681f3Smrg * Copyright 2009 VMware, Inc.
47ec681f3Smrg * All Rights Reserved.
57ec681f3Smrg *
67ec681f3Smrg * Permission is hereby granted, free of charge, to any person obtaining a
77ec681f3Smrg * copy of this software and associated documentation files (the
87ec681f3Smrg * "Software"), to deal in the Software without restriction, including
97ec681f3Smrg * without limitation the rights to use, copy, modify, merge, publish,
107ec681f3Smrg * distribute, sub license, and/or sell copies of the Software, and to
117ec681f3Smrg * permit persons to whom the Software is furnished to do so, subject to
127ec681f3Smrg * the following conditions:
137ec681f3Smrg *
147ec681f3Smrg * The above copyright notice and this permission notice (including the
157ec681f3Smrg * next paragraph) shall be included in all copies or substantial portions
167ec681f3Smrg * of the Software.
177ec681f3Smrg *
187ec681f3Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
197ec681f3Smrg * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
207ec681f3Smrg * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
217ec681f3Smrg * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
227ec681f3Smrg * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
237ec681f3Smrg * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
247ec681f3Smrg * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
257ec681f3Smrg *
267ec681f3Smrg **************************************************************************/
277ec681f3Smrg
287ec681f3Smrg#ifndef STW_WGL_H_
297ec681f3Smrg#define STW_WGL_H_
307ec681f3Smrg
317ec681f3Smrg
327ec681f3Smrg#include <windows.h>
337ec681f3Smrg
347ec681f3Smrg#include <GL/gl.h>
357ec681f3Smrg
367ec681f3Smrg
377ec681f3Smrg/*
387ec681f3Smrg * Undeclared APIs exported by opengl32.dll
397ec681f3Smrg */
407ec681f3Smrg
417ec681f3SmrgWINGDIAPI BOOL WINAPI
427ec681f3SmrgwglSwapBuffers(HDC hdc);
437ec681f3Smrg
447ec681f3SmrgWINGDIAPI int WINAPI
457ec681f3SmrgwglChoosePixelFormat(HDC hdc,
467ec681f3Smrg                     CONST PIXELFORMATDESCRIPTOR *ppfd);
477ec681f3Smrg
487ec681f3SmrgWINGDIAPI int WINAPI
497ec681f3SmrgwglDescribePixelFormat(HDC hdc,
507ec681f3Smrg                       int iPixelFormat,
517ec681f3Smrg                       UINT nBytes,
527ec681f3Smrg                       LPPIXELFORMATDESCRIPTOR ppfd);
537ec681f3Smrg
547ec681f3SmrgWINGDIAPI int WINAPI
557ec681f3SmrgwglGetPixelFormat(HDC hdc);
567ec681f3Smrg
577ec681f3SmrgWINGDIAPI BOOL WINAPI
587ec681f3SmrgwglSetPixelFormat(HDC hdc,
597ec681f3Smrg                  int iPixelFormat,
607ec681f3Smrg                  CONST PIXELFORMATDESCRIPTOR *ppfd);
617ec681f3Smrg
627ec681f3SmrgWINGDIAPI HDC APIENTRY
637ec681f3SmrgwglGetCurrentReadDCARB( VOID );
647ec681f3Smrg
657ec681f3SmrgWINGDIAPI BOOL APIENTRY
667ec681f3SmrgwglMakeContextCurrentARB(
677ec681f3Smrg   HDC hDrawDC,
687ec681f3Smrg   HDC hReadDC,
697ec681f3Smrg   HGLRC hglrc );
707ec681f3Smrg
717ec681f3Smrg
727ec681f3Smrg#ifndef WGL_SWAPMULTIPLE_MAX
737ec681f3Smrg
747ec681f3Smrgtypedef struct _WGLSWAP
757ec681f3Smrg{
767ec681f3Smrg   HDC hdc;
777ec681f3Smrg   UINT uiFlags;
787ec681f3Smrg} WGLSWAP;
797ec681f3Smrg
807ec681f3Smrg#define WGL_SWAPMULTIPLE_MAX 16
817ec681f3Smrg
827ec681f3SmrgWINGDIAPI DWORD WINAPI
837ec681f3SmrgwglSwapMultipleBuffers(UINT n,
847ec681f3Smrg                       CONST WGLSWAP *ps);
857ec681f3Smrg
867ec681f3Smrg#endif /* !WGL_SWAPMULTIPLE_MAX */
877ec681f3Smrg
887ec681f3Smrg
897ec681f3Smrg#endif /* STW_WGL_H_ */
90