summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/shader_ir.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-05-01 00:36:18 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-05-03 02:46:25 +0200
commitc6f9e651b21aca5ec5afef1f217b39a3b85518b9 (patch)
tree53a0bddbb9bc78f3c26fb91ed64fab8cb008f87b /src/video_core/shader/shader_ir.h
parentshader_ir/memory: Implement physical input attributes (diff)
downloadyuzu-c6f9e651b21aca5ec5afef1f217b39a3b85518b9.tar
yuzu-c6f9e651b21aca5ec5afef1f217b39a3b85518b9.tar.gz
yuzu-c6f9e651b21aca5ec5afef1f217b39a3b85518b9.tar.bz2
yuzu-c6f9e651b21aca5ec5afef1f217b39a3b85518b9.tar.lz
yuzu-c6f9e651b21aca5ec5afef1f217b39a3b85518b9.tar.xz
yuzu-c6f9e651b21aca5ec5afef1f217b39a3b85518b9.tar.zst
yuzu-c6f9e651b21aca5ec5afef1f217b39a3b85518b9.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/shader/shader_ir.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/shader_ir.h b/src/video_core/shader/shader_ir.h
index 3a1164d4f..a4bb0c41c 100644
--- a/src/video_core/shader/shader_ir.h
+++ b/src/video_core/shader/shader_ir.h
@@ -885,7 +885,7 @@ private:
std::set<Sampler> used_samplers;
std::array<bool, Tegra::Engines::Maxwell3D::Regs::NumClipDistances> used_clip_distances{};
std::map<GlobalMemoryBase, GlobalMemoryUsage> used_global_memory;
- bool use_physical_attributes = true; // Shader uses AL2P
+ bool use_physical_attributes{}; // Shader uses AL2P or physical attribute read/writes
Tegra::Shader::Header header;
};