Changeset 104890 in vbox for trunk/src/VBox/Devices/Graphics
- Timestamp:
- Jun 12, 2024 12:28:21 PM (11 months ago)
- svn:sync-xref-src-repo-rev:
- 163492
- Location:
- trunk/src/VBox/Devices/Graphics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-dx-dx11.cpp
r104874 r104890 77 77 /* Always flush after submitting a draw call for debugging. */ 78 78 //#define DX_FLUSH_AFTER_DRAW 79 80 /* This is not available on non Windows hosts. */81 #ifndef D3D_RELEASE82 # define D3D_RELEASE(a_Ptr) do { if ((a_Ptr)) (a_Ptr)->Release(); (a_Ptr) = NULL; } while (0)83 #endif84 79 85 80 #define D3D_RELEASE_ARRAY(a_Count, a_papArray) do { \ -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-internal.h
r102714 r104890 1405 1405 PVMSVGA3DSURFACE pSurface, void *pvData, uint32_t cbRowPitch, uint32_t cbDepthPitch); 1406 1406 1407 #if defined(RT_OS_WINDOWS)1408 1407 #define D3D_RELEASE(ptr) do { \ 1409 1408 if (ptr) \ … … 1413 1412 } \ 1414 1413 } while (0) 1415 #endif1416 1414 1417 1415 #if defined(VMSVGA3D_DIRECT3D)
Note:
See TracChangeset
for help on using the changeset viewer.