Changeset 16220 in vbox for trunk/src/VBox/Additions/WINNT/Graphics
- Timestamp:
- Jan 26, 2009 10:27:58 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 42010
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/crOpenGL
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/crOpenGL/wgl.c
r16219 r16220 460 460 const GLubyte * WINAPI wglGetExtensionsStringEXT_prox( HDC hdc ) 461 461 { 462 static GLubyte *retval = "WGL_EXT_pixel_format WGL_ARB_multisample"; 462 /*static GLubyte *retval = "WGL_EXT_pixel_format WGL_ARB_multisample";*/ 463 static GLubyte *retval = "WGL_ARB_multisample"; 463 464 464 465 (void) hdc; -
trunk/src/VBox/Additions/WINNT/Graphics/crOpenGL/windows_getprocaddress.py
r16219 r16220 18 18 #include "icd_drv.h" 19 19 #include "cr_gl.h" 20 #include "cr_error.h" 20 21 21 22 #ifdef WINDOWS … … 91 92 }; 92 93 94 extern const GLubyte * WINAPI wglGetExtensionsStringEXT_prox( HDC hdc ); 95 93 96 CR_PROC CR_APIENTRY crGetProcAddress( const char *name ) 94 97 { 95 98 int i; 99 wglGetExtensionsStringEXTFunc_t wglGetExtensionsStringEXT = wglGetExtensionsStringEXT_prox; 100 96 101 stubInit(); 97 102 … … 101 106 } 102 107 } 108 109 if (!crStrcmp( name, "wglGetExtensionsStringARB" )) return (CR_PROC) wglGetExtensionsStringEXT; 103 110 111 crDebug("Returning GetProcAddress:NULL for %s", name); 104 112 return NULL; 105 113 } … … 110 118 111 119 # XXX should crGetProcAddress really handle WGL/GLX functions??? 112 113 120 print_foo = """ 114 121 /* As these are Windows specific (i.e. wgl), define these now.... */
Note:
See TracChangeset
for help on using the changeset viewer.