Changeset 2660 for trunk/src/opengl/opengl32.cpp
- Timestamp:
- Feb 5, 2000, 4:54:54 PM (26 years ago)
- File:
-
- 1 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 /* */
Note:
See TracChangeset
for help on using the changeset viewer.