summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/shader.h
diff options
context:
space:
mode:
authorHenrik Rydgard <hrydgard@gmail.com>2016-04-28 19:01:47 +0200
committerHenrik Rydgard <hrydgard@gmail.com>2016-04-28 19:05:55 +0200
commit47ff00881703eeab03d32e60289ac34b7f4a7994 (patch)
treeb3260ea48aba0cf7feee3cd338c6676dd4a3d604 /src/video_core/shader/shader.h
parentRemove late accesses to attribute_config (diff)
downloadyuzu-47ff00881703eeab03d32e60289ac34b7f4a7994.tar
yuzu-47ff00881703eeab03d32e60289ac34b7f4a7994.tar.gz
yuzu-47ff00881703eeab03d32e60289ac34b7f4a7994.tar.bz2
yuzu-47ff00881703eeab03d32e60289ac34b7f4a7994.tar.lz
yuzu-47ff00881703eeab03d32e60289ac34b7f4a7994.tar.xz
yuzu-47ff00881703eeab03d32e60289ac34b7f4a7994.tar.zst
yuzu-47ff00881703eeab03d32e60289ac34b7f4a7994.zip
Diffstat (limited to 'src/video_core/shader/shader.h')
-rw-r--r--src/video_core/shader/shader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/shader.h b/src/video_core/shader/shader.h
index 9c5bd97bd..9ce9344d2 100644
--- a/src/video_core/shader/shader.h
+++ b/src/video_core/shader/shader.h
@@ -25,7 +25,7 @@ namespace Pica {
namespace Shader {
struct InputVertex {
- Math::Vec4<float24> attr[16];
+ alignas(16) Math::Vec4<float24> attr[16];
};
struct OutputVertex {