Changeset 3451 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Jul 5, 2007 11:51:27 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 22663
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/OpenGL
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/OpenGL/Makefile.kmk
r3339 r3451 40 40 OGLComplexSync.cpp \ 41 41 OGLComplexAsync.cpp \ 42 glext.cpp \ 42 43 OGLLookup.cpp \ 43 44 MesaGL.cpp \ -
trunk/src/VBox/Additions/WINNT/Graphics/OpenGL/glext.cpp
r3339 r3451 24 24 */ 25 25 26 #include "VBoxOGL.h" 27 #include <VBox/HostServices/wglext.h> 28 29 #if 0 26 30 GL_ARB_multitexture 27 31 GL_EXT_texture_env_add … … 101 105 WGL_EXT_extensions_string 102 106 WGL_EXT_swap_control 107 #endif 108 109 110 BOOL WINAPI wglSwapIntervalEXT(int interval) 111 { 112 VBOX_OGL_GEN_SYNC_OP1_RET(BOOL, wglSwapIntervalEXT, interval); 113 return retval; 114 } 115 116 int WINAPI wglGetSwapIntervalEXT(void) 117 { 118 VBOX_OGL_GEN_SYNC_OP_RET(int, wglGetSwapIntervalEXT); 119 return retval; 120 } 121
Note:
See TracChangeset
for help on using the changeset viewer.