summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/shader.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2016-05-12 03:47:08 +0200
committerbunnei <bunneidev@gmail.com>2016-05-12 03:47:08 +0200
commitf6eb62d0628d31efc4f93a0057ebd85bb39bc0fe (patch)
treefc06c2b51cbfbf4867ab885d32b0427ddc56e3b6 /src/video_core/shader/shader.h
parentMerge pull request #1780 from JayFoxRox/shadersetup-class (diff)
parentOpenGL: Implement texture type 3 (diff)
downloadyuzu-f6eb62d0628d31efc4f93a0057ebd85bb39bc0fe.tar
yuzu-f6eb62d0628d31efc4f93a0057ebd85bb39bc0fe.tar.gz
yuzu-f6eb62d0628d31efc4f93a0057ebd85bb39bc0fe.tar.bz2
yuzu-f6eb62d0628d31efc4f93a0057ebd85bb39bc0fe.tar.lz
yuzu-f6eb62d0628d31efc4f93a0057ebd85bb39bc0fe.tar.xz
yuzu-f6eb62d0628d31efc4f93a0057ebd85bb39bc0fe.tar.zst
yuzu-f6eb62d0628d31efc4f93a0057ebd85bb39bc0fe.zip
Diffstat (limited to 'src/video_core/shader/shader.h')
-rw-r--r--src/video_core/shader/shader.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/shader/shader.h b/src/video_core/shader/shader.h
index cfbb7f2ee..7f417675a 100644
--- a/src/video_core/shader/shader.h
+++ b/src/video_core/shader/shader.h
@@ -43,7 +43,8 @@ struct OutputVertex {
Math::Vec4<float24> color;
Math::Vec2<float24> tc0;
Math::Vec2<float24> tc1;
- INSERT_PADDING_WORDS(2);
+ float24 tc0_w;
+ INSERT_PADDING_WORDS(1);
Math::Vec3<float24> view;
INSERT_PADDING_WORDS(1);
Math::Vec2<float24> tc2;