summaryrefslogtreecommitdiff
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2019-04-30 00:09:51 -0300
committerGravatar ReinUsesLisp2019-05-02 21:46:25 -0300
commitbd81a03d9d4b3e7d69eb8377b13278944bc5ab0b (patch)
treea6741bf5cc228af09f41de88a508e6d27f279ded /src/video_core/engines
parentshader: Remove unused AbufNode Ipa mode (diff)
downloadyuzu-bd81a03d9d4b3e7d69eb8377b13278944bc5ab0b.tar.gz
yuzu-bd81a03d9d4b3e7d69eb8377b13278944bc5ab0b.tar.xz
yuzu-bd81a03d9d4b3e7d69eb8377b13278944bc5ab0b.zip
gl_shader_decompiler: Declare all possible varyings on physical attribute usage
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/maxwell_3d.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 85d309d9b..b1e640dd1 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -51,6 +51,7 @@ public:
51 static constexpr std::size_t NumCBData = 16; 51 static constexpr std::size_t NumCBData = 16;
52 static constexpr std::size_t NumVertexArrays = 32; 52 static constexpr std::size_t NumVertexArrays = 32;
53 static constexpr std::size_t NumVertexAttributes = 32; 53 static constexpr std::size_t NumVertexAttributes = 32;
54 static constexpr std::size_t NumVaryings = 31;
54 static constexpr std::size_t NumTextureSamplers = 32; 55 static constexpr std::size_t NumTextureSamplers = 32;
55 static constexpr std::size_t NumClipDistances = 8; 56 static constexpr std::size_t NumClipDistances = 8;
56 static constexpr std::size_t MaxShaderProgram = 6; 57 static constexpr std::size_t MaxShaderProgram = 6;