Changeset 32178 in vbox for trunk/src/VBox/Additions/common/crOpenGL
- Timestamp:
- Sep 1, 2010 1:51:22 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 65462
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/crOpenGL/windows_getprocaddress.py
r30457 r32178 101 101 extern BOOL WINAPI wglGetPixelFormatAttribfvEXT_prox(HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, int *piAttributes, float *pValues); 102 102 103 BOOL WINAPI wglSwapIntervalEXT(int interval) 104 { 105 return false; 106 } 107 103 108 CR_PROC CR_APIENTRY crGetProcAddress( const char *name ) 104 109 { … … 130 135 if (!crStrcmp( name, "wglGetPixelFormatAttribfvARB" )) return (CR_PROC) wglGetPixelFormatAttribfvEXT; 131 136 137 if (!crStrcmp( name, "wglSwapIntervalEXT" )) return (CR_PROC) wglSwapIntervalEXT; 138 132 139 crDebug("Returning GetProcAddress:NULL for %s", name); 133 140 return NULL;
Note:
See TracChangeset
for help on using the changeset viewer.