Changeset 9429 for trunk/src/gdi32/opengl.cpp
- Timestamp:
- Nov 26, 2002, 11:53:12 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/opengl.cpp
r2802 r9429 1 /* $Id: opengl.cpp,v 1. 8 2000-02-16 14:18:11 sandervl Exp $ */1 /* $Id: opengl.cpp,v 1.9 2002-11-26 10:53:11 sandervl Exp $ */ 2 2 3 3 /* … … 119 119 *****************************************************************************/ 120 120 121 ODINFUNCTION2(int,ChoosePixelFormat,HDC, hdc, 122 CONST PIXELFORMATDESCRIPTOR*,pformat) 121 int WIN32API ChoosePixelFormat(HDC hdc, CONST PIXELFORMATDESCRIPTOR* pformat) 123 122 { 124 123 if (glChoosePixelFormat == NULL) … … 129 128 } 130 129 131 ODINFUNCTION4(int,DescribePixelFormat,HDC,hdc, 132 int,iFormat, 133 UINT,nBytes, 134 LPPIXELFORMATDESCRIPTOR,pformat) 130 int WIN32API DescribePixelFormat(HDC hdc, int iFormat, UINT nBytes, 131 LPPIXELFORMATDESCRIPTOR pformat) 135 132 { 136 133 if (glDescribePixelFormat == NULL) … … 141 138 } 142 139 143 ODINFUNCTION1(int,GetPixelFormat,HDC,hdc)140 int WIN32API GetPixelFormat(HDC hdc) 144 141 { 145 142 if (glGetPixelFormat == NULL) … … 162 159 *****************************************************************************/ 163 160 164 ODINFUNCTION3(BOOL,SetPixelFormat,HDC, hdc, 165 int, whatever, 166 CONST PIXELFORMATDESCRIPTOR*, pformat) 161 BOOL WIN32API SetPixelFormat(HDC hdc, int whatever, 162 CONST PIXELFORMATDESCRIPTOR *pformat) 167 163 { 168 164 if (glSetPixelFormat == NULL) … … 186 182 *****************************************************************************/ 187 183 188 ODINFUNCTION1(BOOL,SwapBuffers,HDC,hdc)184 BOOL WIN32API SwapBuffers(HDC hdc) 189 185 { 190 186 if (glSwapBuffers == NULL)
Note:
See TracChangeset
for help on using the changeset viewer.