summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/fixed_pipeline_state.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-06-26 22:46:01 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:39 +0200
commitfba6bd92d456b4d472ed37e663006fafeef154a9 (patch)
treed3b18440b2b0a9483e63ea5c520716291c5f04dc /src/video_core/renderer_vulkan/fixed_pipeline_state.cpp
parentshader: Fix disabled and unwritten attributes and varyings (diff)
downloadyuzu-fba6bd92d456b4d472ed37e663006fafeef154a9.tar
yuzu-fba6bd92d456b4d472ed37e663006fafeef154a9.tar.gz
yuzu-fba6bd92d456b4d472ed37e663006fafeef154a9.tar.bz2
yuzu-fba6bd92d456b4d472ed37e663006fafeef154a9.tar.lz
yuzu-fba6bd92d456b4d472ed37e663006fafeef154a9.tar.xz
yuzu-fba6bd92d456b4d472ed37e663006fafeef154a9.tar.zst
yuzu-fba6bd92d456b4d472ed37e663006fafeef154a9.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_vulkan/fixed_pipeline_state.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_vulkan/fixed_pipeline_state.cpp b/src/video_core/renderer_vulkan/fixed_pipeline_state.cpp
index d089da8a4..d70153df3 100644
--- a/src/video_core/renderer_vulkan/fixed_pipeline_state.cpp
+++ b/src/video_core/renderer_vulkan/fixed_pipeline_state.cpp
@@ -128,7 +128,7 @@ void FixedPipelineState::Refresh(Tegra::Engines::Maxwell3D& maxwell3d,
const auto& input = regs.vertex_attrib_format[index];
auto& attribute = attributes[index];
attribute.raw = 0;
- attribute.enabled.Assign(input.IsConstant() ? 0 : 1);
+ attribute.enabled.Assign(input.constant ? 0 : 1);
attribute.buffer.Assign(input.buffer);
attribute.offset.Assign(input.offset);
attribute.type.Assign(static_cast<u32>(input.type.Value()));