diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2018-11-29 16:13:13 -0300 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2018-11-29 16:58:20 -0300 |
commit | 2908d302748c1db6df3f44cd27d51a34a1b50c31 (patch) | |
tree | 3a8c722a381133eb7316973b2aef282f770ea4fd /src/video_core/engines | |
parent | 7befe0134ddaa34093dab8ef171f28846cd91286 (diff) |
gl_rasterizer: Enable clip distances when set in register and in shader
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 d3b3ed1f0..25bb7604a 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h @@ -42,6 +42,7 @@ public: static constexpr std::size_t NumVertexArrays = 32; static constexpr std::size_t NumVertexAttributes = 32; static constexpr std::size_t NumTextureSamplers = 32; + static constexpr std::size_t NumClipDistances = 8; static constexpr std::size_t MaxShaderProgram = 6; static constexpr std::size_t MaxShaderStage = 5; // Maximum number of const buffers per shader stage. |