Changeset 43705 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Oct 22, 2012 4:35:12 PM (12 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Wine/wined3d
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/device.c
r43488 r43705 5532 5532 * loading. */ 5533 5533 d3dfmt_get_conv(dst_impl, FALSE, TRUE, &dummy_desc, &convert); 5534 if (convert != NO_CONVERSION )5534 if (convert != NO_CONVERSION || dummy_desc.convert) 5535 5535 return IWineD3DSurface_BltFast(dst_surface, dst_x, dst_y, src_surface, src_rect, 0); 5536 5536 -
trunk/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/surface.c
r43319 r43705 2865 2865 #endif 2866 2866 2867 if (!(This->Flags & SFLAG_DONOTFREE) ) {2867 if (!(This->Flags & SFLAG_DONOTFREE) && !This->resource.format_desc->convert) { 2868 2868 HeapFree(GetProcessHeap(), 0, This->resource.heapMemory); 2869 2869 This->resource.allocatedMemory = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.