- Timestamp:
- Dec 21, 2010 11:23:17 AM (14 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/crOpenGL/pack/packspu_getstring.c
r32241 r35271 76 76 ext = crStateMergeExtensions(1, &extensions); 77 77 78 #ifdef Linux 79 /*@todo 80 *That's a hack to allow running Unity, it uses libnux which is calling extension functions 81 *without checking if it's being supported/exported. 82 *glActiveStencilFaceEXT seems to be actually supported but the extension string isn't exported (for ex. on ATI HD4870), 83 *which leads to libglew setting function pointer to NULL and crashing Unity. 84 */ 85 sprintf((char*)gpszExtensions, "%s GL_EXT_stencil_two_side", ext); 86 #else 78 87 sprintf((char*)gpszExtensions, "%s", ext); 88 #endif 79 89 80 90 return gpszExtensions; -
trunk/src/VBox/GuestHost/OpenGL/glapi_parser/APIspec.txt
r33988 r35271 6704 6704 param face GLenum 6705 6705 paramprop face GL_FRONT GL_BACK 6706 category EXT_stencil_two_side6707 chromium omit6706 category GL_EXT_stencil_two_side 6707 chromium extpack 6708 6708 6709 6709 … … 10329 10329 chromium extpack 10330 10330 10331 # GL_EXT_blend_equation_separate 10332 name BlendEquationSeparateEXT 10333 alias BlendEquationSeparate 10334 return void 10335 param modeRGB GLenum 10336 paramprop modeRGB GL_FUNC_ADD GL_FUNC_SUBTRACT GL_FUNC_REVERSE_SUBTRACT GL_MIN GL_MAX GL_LOGIC_OP 10337 param modeAlpha GLenum 10338 paramprop modeAlpha GL_FUNC_ADD GL_FUNC_SUBTRACT GL_FUNC_REVERSE_SUBTRACT GL_MIN GL_MAX GL_LOGIC_OP 10339 category GL_EXT_blend_equation_separate 10340 chromium nopack 10341 10331 10342 # end of file sentinel 10332 10343 -
trunk/src/VBox/GuestHost/OpenGL/include/cr_extstring.h
r33093 r35271 217 217 "GL_EXT_framebuffer_blit " 218 218 #endif 219 #ifdef CR_EXT_blend_equation_separate 220 "GL_EXT_blend_equation_separate " 221 #endif 222 #ifdef CR_EXT_stencil_two_side 223 "GL_EXT_stencil_two_side " 224 #endif 219 225 ""; 220 226 -
trunk/src/VBox/GuestHost/OpenGL/include/cr_protocol.h
r33093 r35271 16 16 /*For now guest is allowed to connect host opengl service if protocol version matches exactly*/ 17 17 /*Note: that after any change to this file, or glapi_parser\apispec.txt version should be changed*/ 18 #define CR_PROTOCOL_VERSION_MAJOR 818 #define CR_PROTOCOL_VERSION_MAJOR 9 19 19 #define CR_PROTOCOL_VERSION_MINOR 1 20 20 -
trunk/src/VBox/GuestHost/OpenGL/include/cr_version.h
r33540 r35271 129 129 130 130 #define CR_EXT_framebuffer_blit 1 131 #define CR_EXT_blend_equation_separate 1 132 #define CR_EXT_stencil_two_side 1 131 133 132 134 #endif /* CR_VERSION_H */
Note:
See TracChangeset
for help on using the changeset viewer.