diff options
author | bunnei <bunneidev@gmail.com> | 2016-05-12 03:47:08 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2016-05-12 03:47:08 +0200 |
commit | f6eb62d0628d31efc4f93a0057ebd85bb39bc0fe (patch) | |
tree | fc06c2b51cbfbf4867ab885d32b0427ddc56e3b6 /src/video_core/shader | |
parent | Merge pull request #1780 from JayFoxRox/shadersetup-class (diff) | |
parent | OpenGL: Implement texture type 3 (diff) | |
download | yuzu-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')
-rw-r--r-- | src/video_core/shader/shader.h | 3 |
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; |