Changeset 48079 in vbox for trunk/src/VBox/HostServices/SharedOpenGL/crserverlib
- Timestamp:
- Aug 27, 2013 12:30:57 PM (11 years ago)
- Location:
- trunk/src/VBox/HostServices/SharedOpenGL/crserverlib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_context.c
r47566 r48079 63 63 cr_server.firstCallCreateContext = GL_FALSE; 64 64 fFirst = GL_TRUE; 65 66 cr_server.head_spu->dispatch_table.ChromiumParameteriCR(GL_HH_SET_DEFAULT_SHARED_CTX, cr_server.MainContextInfo.SpuContext); 65 67 } 66 68 else { … … 71 73 /* the new context needs new visual attributes */ 72 74 cr_server.MainContextInfo.CreateInfo.visualBits |= visualBits; 73 cr Debug("crServerDispatchCreateContext requires new visual (0x%x).",75 crWarning("crServerDispatchCreateContext requires new visual (0x%x).", 74 76 cr_server.MainContextInfo.CreateInfo.visualBits); 75 77 … … 95 97 return -1; 96 98 } 99 100 /* we do not need to clean up the old default context explicitly, since the above cr_server.head_spu->dispatch_table.DestroyContext call 101 * will do that for us */ 102 cr_server.head_spu->dispatch_table.ChromiumParameteriCR(GL_HH_SET_DEFAULT_SHARED_CTX, cr_server.MainContextInfo.SpuContext); 97 103 } 98 104 } -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_misc.c
r46783 r48079 274 274 case GL_HOST_WND_CREATED_HIDDEN_CR: 275 275 cr_server.bWindowsInitiallyHidden = value ? 1 : 0; 276 break; 277 case GL_HH_SET_DEFAULT_SHARED_CTX: 278 crWarning("Recieved GL_HH_SET_DEFAULT_SHARED_CTX from guest, ignoring"); 276 279 break; 277 280 default:
Note:
See TracChangeset
for help on using the changeset viewer.