Browse Source

maxwell_3d: change declaration order

pull/15/merge
namkazy 6 years ago
parent
commit
f66743cd0c
  1. 4
      src/video_core/engines/maxwell_3d.h

4
src/video_core/engines/maxwell_3d.h

@ -1276,7 +1276,9 @@ public:
};
std::array<u32, NUM_REGS> reg_array;
};
} regs{};
};
Regs regs{};
/// Store temporary hw register values, used by some calls to restore state after a operation
Regs shadow_state;

Loading…
Cancel
Save