summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/shader_ir.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-07-15 22:28:07 +0200
committerGitHub <noreply@github.com>2019-07-15 22:28:07 +0200
commit1bdb59fc6e52ac9d2c2432511fe7524994cc4f55 (patch)
treebcef764c59b000dba9eb040281799bf0152cb363 /src/video_core/shader/shader_ir.h
parentMerge pull request #2705 from FernandoS27/tex-cache-fixes (diff)
parentgl_shader_decompiler: Fix gl_PointSize redeclaration (diff)
downloadyuzu-1bdb59fc6e52ac9d2c2432511fe7524994cc4f55.tar
yuzu-1bdb59fc6e52ac9d2c2432511fe7524994cc4f55.tar.gz
yuzu-1bdb59fc6e52ac9d2c2432511fe7524994cc4f55.tar.bz2
yuzu-1bdb59fc6e52ac9d2c2432511fe7524994cc4f55.tar.lz
yuzu-1bdb59fc6e52ac9d2c2432511fe7524994cc4f55.tar.xz
yuzu-1bdb59fc6e52ac9d2c2432511fe7524994cc4f55.tar.zst
yuzu-1bdb59fc6e52ac9d2c2432511fe7524994cc4f55.zip
Diffstat (limited to 'src/video_core/shader/shader_ir.h')
-rw-r--r--src/video_core/shader/shader_ir.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/video_core/shader/shader_ir.h b/src/video_core/shader/shader_ir.h
index 6145f0a70..03c888def 100644
--- a/src/video_core/shader/shader_ir.h
+++ b/src/video_core/shader/shader_ir.h
@@ -115,6 +115,18 @@ public:
return static_cast<std::size_t>(coverage_end * sizeof(u64));
}
+ bool UsesLayer() const {
+ return uses_layer;
+ }
+
+ bool UsesViewportIndex() const {
+ return uses_viewport_index;
+ }
+
+ bool UsesPointSize() const {
+ return uses_point_size;
+ }
+
bool HasPhysicalAttributes() const {
return uses_physical_attributes;
}
@@ -346,6 +358,9 @@ private:
std::set<Image> used_images;
std::array<bool, Tegra::Engines::Maxwell3D::Regs::NumClipDistances> used_clip_distances{};
std::map<GlobalMemoryBase, GlobalMemoryUsage> used_global_memory;
+ bool uses_layer{};
+ bool uses_viewport_index{};
+ bool uses_point_size{};
bool uses_physical_attributes{}; // Shader uses AL2P or physical attribute read/writes
Tegra::Shader::Header header;