diff options
| author | 2016-04-18 10:51:13 +0200 | |
|---|---|---|
| committer | 2016-05-11 08:07:36 +0200 | |
| commit | 2f8e8e14551040168e60d3553a0847fd5a6d2b7b (patch) | |
| tree | f3fcfbf749c9cad6a0d6aac9a8be57357c4294a2 /src | |
| parent | Pica: Add texture type to state (diff) | |
| download | yuzu-2f8e8e14551040168e60d3553a0847fd5a6d2b7b.tar.gz yuzu-2f8e8e14551040168e60d3553a0847fd5a6d2b7b.tar.xz yuzu-2f8e8e14551040168e60d3553a0847fd5a6d2b7b.zip | |
Pica: Add tc0.w to OutputVertex
Diffstat (limited to 'src')
| -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 56b83bfeb..891d2fb19 100644 --- a/src/video_core/shader/shader.h +++ b/src/video_core/shader/shader.h | |||
| @@ -43,7 +43,8 @@ struct OutputVertex { | |||
| 43 | Math::Vec4<float24> color; | 43 | Math::Vec4<float24> color; |
| 44 | Math::Vec2<float24> tc0; | 44 | Math::Vec2<float24> tc0; |
| 45 | Math::Vec2<float24> tc1; | 45 | Math::Vec2<float24> tc1; |
| 46 | INSERT_PADDING_WORDS(2); | 46 | float24 tc0_w; |
| 47 | INSERT_PADDING_WORDS(1); | ||
| 47 | Math::Vec3<float24> view; | 48 | Math::Vec3<float24> view; |
| 48 | INSERT_PADDING_WORDS(1); | 49 | INSERT_PADDING_WORDS(1); |
| 49 | Math::Vec2<float24> tc2; | 50 | Math::Vec2<float24> tc2; |