Просмотр исходного кода

Merge pull request #2469 from lioncash/copyable

video_core/engines/maxwell_3d: Add is_trivially_copyable_v check for Regs
Hexagon12 7 лет назад
Родитель
Сommit
3bd5f01240
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      src/video_core/engines/maxwell_3d.h

+ 2 - 0
src/video_core/engines/maxwell_3d.h

@@ -6,6 +6,7 @@
 
 #include <array>
 #include <bitset>
+#include <type_traits>
 #include <unordered_map>
 #include <vector>
 
@@ -1107,6 +1108,7 @@ public:
     } regs{};
 
     static_assert(sizeof(Regs) == Regs::NUM_REGS * sizeof(u32), "Maxwell3D Regs has wrong size");
+    static_assert(std::is_trivially_copyable_v<Regs>, "Maxwell3D Regs must be trivially copyable");
 
     struct State {
         struct ConstBufferInfo {