Changeset 33750 in vbox
- Timestamp:
- Nov 3, 2010 9:00:26 PM (14 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
-
Additions/WINNT/Graphics/Wine/wined3d/context.c (modified) (1 diff)
-
Additions/common/VBoxGuest/VBoxGuestInternal.h (modified) (1 diff)
-
GuestHost/OpenGL/include/cr_server.h (modified) (1 diff)
-
GuestHost/OpenGL/util/error.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/context.c
r33684 r33750 1599 1599 IWineD3DSwapChain *swapchain = NULL; 1600 1600 if (target && SUCCEEDED(IWineD3DSurface_GetContainer(target, &IID_IWineD3DSwapChain, (void **)&swapchain))) { 1601 context_validate(c urrent_context, (IWineD3DSwapChainImpl*)swapchain);1601 context_validate(context, (IWineD3DSwapChainImpl*)swapchain); 1602 1602 IWineD3DSwapChain_Release(swapchain); 1603 1603 } 1604 1604 else { 1605 1605 /* tmp work-around */ 1606 context_validate(c urrent_context,1607 NULL //(IWineD3DSwapChainImpl*)c urrent_context->device->swapchains[current_context->device->NumberOfSwapChains-1]1606 context_validate(context, 1607 NULL //(IWineD3DSwapChainImpl*)context->device->swapchains[context->device->NumberOfSwapChains-1] 1608 1608 ); 1609 1609 } -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuestInternal.h
r33540 r33750 208 208 /** Array containing HGCM client IDs associated with this session. 209 209 * This will be automatically disconnected when the session is closed. */ 210 uint32_t volatile aHGCMClientIds[ 8];210 uint32_t volatile aHGCMClientIds[64]; 211 211 #endif 212 212 /** The last consumed VMMDEV_EVENT_MOUSE_POSITION_CHANGED sequence number. -
trunk/src/VBox/GuestHost/OpenGL/include/cr_server.h
r33319 r33750 29 29 30 30 #define CR_MAX_WINDOWS 100 31 #define CR_MAX_CLIENTS 2031 #define CR_MAX_CLIENTS 64 32 32 33 33 /*@todo must match MaxGuestMonitors from SchemaDefs.h*/ -
trunk/src/VBox/GuestHost/OpenGL/util/error.c
r33684 r33750 197 197 #ifdef WINDOWS 198 198 } 199 #if !defined(DEBUG_leo) && !defined(DEBUG_ll158262) 199 #if !defined(DEBUG_leo) && !defined(DEBUG_ll158262) && !(defined(DEBUG_misha) && defined(IN_GUEST)) 200 200 if (crGetenv( "CR_DEBUG_ON_ERROR" ) != NULL) 201 201 #endif
Note:
See TracChangeset
for help on using the changeset viewer.

