- Timestamp:
- Feb 5, 2000, 4:54:54 PM (26 years ago)
- Location:
- trunk/src/opengl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/opengl32.cpp
r2595 r2660 1 /* $Id: opengl32.cpp,v 1. 2 2000-02-01 19:41:55sandervl Exp $ */1 /* $Id: opengl32.cpp,v 1.3 2000-02-05 15:54:53 sandervl Exp $ */ 2 2 /*****************************************************************************/ 3 3 /* */ … … 3028 3028 /*****************************************************************************/ 3029 3029 /* */ 3030 /* Interface for opengl.cpp - resolve OS2xxx calls */3031 /* */3032 /*****************************************************************************/3033 3034 int APIENTRY OS2wglChoosePixelFormat(HDC hdc,3035 PIXELFORMATDESCRIPTOR *p)3036 {3037 return wglChoosePixelFormat(hdc,p);3038 }3039 3040 int APIENTRY OS2wglSetPixelFormat(HDC hdc,3041 int iFormat,3042 PIXELFORMATDESCRIPTOR *p)3043 {3044 return wglSetPixelFormat(hdc,iFormat,p);3045 }3046 3047 int APIENTRY OS2wglGetPixelFormat(HDC hdc)3048 {3049 return wglGetPixelFormat(hdc);3050 }3051 3052 BOOL APIENTRY OS2wglSwapBuffers(HDC hdc)3053 {3054 return wglSwapBuffers(hdc);3055 }3056 3057 int APIENTRY OS2wglDescribePixelFormat(HDC hdc,3058 int iFormat,3059 UINT nBytes,3060 LPPIXELFORMATDESCRIPTOR p)3061 {3062 return wglDescribePixelFormat(hdc,iFormat,nBytes,p);3063 }3064 3065 /*****************************************************************************/3066 /* */3067 3030 /* Module Internal init and cleanup - called by initterm */ 3068 3031 /* */ -
trunk/src/opengl/opengl32.def
r2595 r2660 1 ;/* $Id: opengl32.def,v 1. 2 2000-02-01 19:41:56sandervl Exp $ */1 ;/* $Id: opengl32.def,v 1.3 2000-02-05 15:54:54 sandervl Exp $ */ 2 2 LIBRARY OPENGL32 INITINSTANCE 3 3 … … 743 743 wglUseFontOutlinesA=_wglUseFontOutlinesA@28 @367 744 744 wglUseFontOutlinesW=_wglUseFontOutlinesW@28 @368 745 OS2wglChoosePixelFormat746 OS2wglSetPixelFormat747 OS2wglGetPixelFormat748 OS2wglSwapBuffers749 OS2wglDescribePixelFormat
Note:
See TracChangeset
for help on using the changeset viewer.