Changeset 84367 in vbox for trunk/src/VBox/Additions/WINNT/Graphics
- Timestamp:
- May 19, 2020 11:23:09 AM (5 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/gallium
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/gallium/VBoxGallium.h
r82968 r84367 27 27 28 28 #include "GaDdi.h" 29 30 #include <iprt/cdefs.h> 31 #pragma warning(push) 32 #if RT_MSC_PREREQ(RT_MSC_VER_VC142) 33 # pragma warning(disable: 5204) /* warning C5204: 'IGaDirect3DDevice9Ex': class has virtual functions, but its trivial destructor is not virtual; instances of objects derived from this class may not be destructed correctly */ 34 #endif 29 35 30 36 class IGalliumStack; … … 81 87 }; 82 88 89 #pragma warning(pop) 90 83 91 84 92 HRESULT GalliumStackCreate(IGalliumStack **ppOut); -
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/gallium/VBoxPresent.h
r82968 r84367 29 29 30 30 #ifdef __cplusplus 31 32 # include <iprt/cdefs.h> 33 # pragma warning(push) 34 # if RT_MSC_PREREQ(RT_MSC_VER_VC142) 35 # pragma warning(disable: 5204) /* warning C5204: 'ID3DPresent': class has virtual functions, but its trivial destructor is not virtual; instances of objects derived from this class may not be destructed correctly */ 36 # endif 37 31 38 /* 32 39 * Gallium only defines C interface for ID3DPresentGroup and ID3DPresent. … … 74 81 }; 75 82 83 # pragma warning(pop) 84 76 85 class IGaDirect3DDevice9Ex; 77 86 HRESULT WDDMPresentGroupCreate(IGaDirect3DDevice9Ex *pGaDevice, ID3DPresentGroup **ppOut);
Note:
See TracChangeset
for help on using the changeset viewer.