Changeset 88838 in vbox for trunk/src/VBox/Devices
- Timestamp:
- May 3, 2021 2:21:10 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144172
- Location:
- trunk/src/VBox/Devices/Graphics
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.h
r88835 r88838 58 58 #endif 59 59 60 /* GCC complains that 'ISO C++ prohibits anonymous structs' when "-Wpedantic" is enabled. */61 #if RT_GNUC_PREREQ(4, 6)62 # pragma GCC diagnostic push63 # pragma GCC diagnostic ignored "-Wpedantic"64 #endif65 60 /* VMSVGA headers. */ 61 #include "vmsvga_headers_begin.h" 66 62 #pragma pack(1) /* VMSVGA structures are '__packed'. */ 67 63 #include <svga3d_caps.h> … … 71 67 #include <svga_overlay.h> 72 68 #pragma pack() 73 #if RT_GNUC_PREREQ(4, 6) 74 # pragma GCC diagnostic pop 75 #endif 69 #include "vmsvga_headers_end.h" 76 70 77 71 /**@def FLOAT_FMT_STR -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-dx-shader.h
r88803 r88838 28 28 #include <iprt/types.h> 29 29 30 /* GCC complains that 'ISO C++ prohibits anonymous structs' when "-Wpedantic" is enabled. */ 31 #if RT_GNUC_PREREQ(4, 6) 32 # pragma GCC diagnostic push 33 # pragma GCC diagnostic ignored "-Wpedantic" 34 #endif 35 /* VMSVGA headers. */ 30 #include "vmsvga_headers_begin.h" 36 31 #pragma pack(1) /* VMSVGA structures are '__packed'. */ 37 32 #include <svga3d_reg.h> 38 33 #include <VGPU10ShaderTokens.h> 39 34 #pragma pack() 40 #if RT_GNUC_PREREQ(4, 6) 41 # pragma GCC diagnostic pop 42 #endif 35 #include "vmsvga_headers_end.h" 43 36 44 37 typedef struct DXShaderInfo -
trunk/src/VBox/Devices/Graphics/svgadump/svga_dump.c
r88830 r88838 34 34 35 35 #include "svga_types.h" 36 #if RT_GNUC_PREREQ(4, 6) 37 # pragma GCC diagnostic push 38 # pragma GCC diagnostic ignored "-Wpedantic" 39 #endif 40 #pragma pack(1) 36 #include "vmsvga_headers_begin.h" 37 #pragma pack(1) /* VMSVGA structures are '__packed'. */ 41 38 #include "svga3d_reg.h" 42 39 #pragma pack() 43 #if RT_GNUC_PREREQ(4, 6) 44 # pragma GCC diagnostic pop 45 #endif 40 #include "vmsvga_headers_end.h" 46 41 47 42 #include "svga_dump.h"
Note:
See TracChangeset
for help on using the changeset viewer.