mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-11 13:20:04 +00:00
video_core:fix warnings
This commit is contained in:
parent
c66594caf8
commit
796e8a9f24
3 changed files with 15 additions and 16 deletions
|
@ -241,7 +241,7 @@ private:
|
|||
struct Uniforms {
|
||||
// The float uniforms are accessed by the shader JIT using SSE instructions, and are
|
||||
// therefore required to be 16-byte aligned.
|
||||
alignas(16) Common::Vec4<float24> f[96];
|
||||
alignas(16) std::array<Common::Vec4<float24>, 96> f;
|
||||
|
||||
std::array<bool, 16> b;
|
||||
std::array<Common::Vec4<u8>, 4> i;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue