summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/shader_ir.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-05-01 00:46:49 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-05-03 02:46:25 +0200
commitfe700e1856fa078ba0fc93ced8576f5023f3146a (patch)
treea470f5071e0e5b323af88aeda3110b791df4ae84 /src/video_core/shader/shader_ir.cpp
parentgl_shader_decompiler: Implement GLSL physical attributes (diff)
downloadyuzu-fe700e1856fa078ba0fc93ced8576f5023f3146a.tar
yuzu-fe700e1856fa078ba0fc93ced8576f5023f3146a.tar.gz
yuzu-fe700e1856fa078ba0fc93ced8576f5023f3146a.tar.bz2
yuzu-fe700e1856fa078ba0fc93ced8576f5023f3146a.tar.lz
yuzu-fe700e1856fa078ba0fc93ced8576f5023f3146a.tar.xz
yuzu-fe700e1856fa078ba0fc93ced8576f5023f3146a.tar.zst
yuzu-fe700e1856fa078ba0fc93ced8576f5023f3146a.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/shader/shader_ir.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/shader_ir.cpp b/src/video_core/shader/shader_ir.cpp
index 947a372a2..691d095c8 100644
--- a/src/video_core/shader/shader_ir.cpp
+++ b/src/video_core/shader/shader_ir.cpp
@@ -95,7 +95,7 @@ Node ShaderIR::GetInputAttribute(Attribute::Index index, u64 element, Node buffe
}
Node ShaderIR::GetPhysicalInputAttribute(Tegra::Shader::Register physical_address, Node buffer) {
- use_physical_attributes = true;
+ uses_physical_attributes = true;
return StoreNode(AbufNode(GetRegister(physical_address), buffer));
}