diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-05-01 00:36:18 +0200 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-05-03 02:46:25 +0200 |
commit | c6f9e651b21aca5ec5afef1f217b39a3b85518b9 (patch) | |
tree | 53a0bddbb9bc78f3c26fb91ed64fab8cb008f87b /src/video_core/shader | |
parent | shader_ir/memory: Implement physical input attributes (diff) | |
download | yuzu-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 'src/video_core/shader')
-rw-r--r-- | src/video_core/shader/shader_ir.h | 2 |
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; }; |