diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-04-30 00:09:51 -0300 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-05-02 21:46:25 -0300 |
commit | bd81a03d9d4b3e7d69eb8377b13278944bc5ab0b (patch) | |
tree | a6741bf5cc228af09f41de88a508e6d27f279ded /src/video_core/engines | |
parent | 06b363c9b5ccb64cfe7ac4d001ae35bff30828de (diff) |
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.h | 1 |
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: static constexpr std::size_t NumCBData = 16; static constexpr std::size_t NumVertexArrays = 32; static constexpr std::size_t NumVertexAttributes = 32; + static constexpr std::size_t NumVaryings = 31; static constexpr std::size_t NumTextureSamplers = 32; static constexpr std::size_t NumClipDistances = 8; static constexpr std::size_t MaxShaderProgram = 6; |