Changeset 32651 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/context.c
- Timestamp:
- Sep 20, 2010 8:22:15 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/context.c
r32622 r32651 855 855 context_validate(context 856 856 #ifdef VBOX_WITH_WDDM/* tmp work-around */ 857 , (IWineD3DSwapChainImpl*)context->device->swapchains[context->device->NumberOfSwapChains-1]857 , NULL //(IWineD3DSwapChainImpl*)context->device->swapchains[context->device->NumberOfSwapChains-1] 858 858 #endif 859 859 ); … … 1611 1611 else { 1612 1612 /* tmp work-around */ 1613 context_validate(current_context, (IWineD3DSwapChainImpl*)current_context->device->swapchains[current_context->device->NumberOfSwapChains-1]); 1613 context_validate(current_context, 1614 NULL //(IWineD3DSwapChainImpl*)current_context->device->swapchains[current_context->device->NumberOfSwapChains-1] 1615 ); 1614 1616 } 1615 1617 } … … 2043 2045 else { 2044 2046 /* tmp work-around */ 2045 context_validate(current_context, (IWineD3DSwapChainImpl*)current_context->device->swapchains[current_context->device->NumberOfSwapChains-1]); 2047 context_validate(current_context, 2048 NULL //(IWineD3DSwapChainImpl*)current_context->device->swapchains[current_context->device->NumberOfSwapChains-1] 2049 ); 2046 2050 } 2047 2051 #else … … 2091 2095 #ifdef VBOX_WITH_WDDM 2092 2096 context_validate(context, 2093 (IWineD3DSwapChainImpl*)This->swapchains[This->NumberOfSwapChains-1] /* tmp work-around */2097 NULL //(IWineD3DSwapChainImpl*)This->swapchains[This->NumberOfSwapChains-1] /* tmp work-around */ 2094 2098 ); 2095 2099 #endif
Note:
See TracChangeset
for help on using the changeset viewer.