summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader_environment.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2022-12-28 03:39:46 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2023-01-03 22:29:25 +0100
commita045e860dd63a46c1f44d343007d772e6da6b037 (patch)
tree7c910d74f74aa48858a1d4012d543946516cc554 /src/video_core/shader_environment.cpp
parentVulkan: rework stencil tracking. (diff)
downloadyuzu-a045e860dd63a46c1f44d343007d772e6da6b037.tar
yuzu-a045e860dd63a46c1f44d343007d772e6da6b037.tar.gz
yuzu-a045e860dd63a46c1f44d343007d772e6da6b037.tar.bz2
yuzu-a045e860dd63a46c1f44d343007d772e6da6b037.tar.lz
yuzu-a045e860dd63a46c1f44d343007d772e6da6b037.tar.xz
yuzu-a045e860dd63a46c1f44d343007d772e6da6b037.tar.zst
yuzu-a045e860dd63a46c1f44d343007d772e6da6b037.zip
Diffstat (limited to 'src/video_core/shader_environment.cpp')
-rw-r--r--src/video_core/shader_environment.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/shader_environment.cpp b/src/video_core/shader_environment.cpp
index 99d85bfb3..c34728245 100644
--- a/src/video_core/shader_environment.cpp
+++ b/src/video_core/shader_environment.cpp
@@ -325,6 +325,7 @@ GraphicsEnvironment::GraphicsEnvironment(Tegra::Engines::Maxwell3D& maxwell3d_,
ASSERT(local_size <= std::numeric_limits<u32>::max());
local_memory_size = static_cast<u32>(local_size) + sph.common3.shader_local_memory_crs_size;
texture_bound = maxwell3d->regs.bindless_texture_const_buffer_slot;
+ is_propietary_driver = texture_bound == 2;
has_hle_engine_state =
maxwell3d->engine_state == Tegra::Engines::Maxwell3D::EngineHint::OnHLEMacro;
}
@@ -399,6 +400,7 @@ ComputeEnvironment::ComputeEnvironment(Tegra::Engines::KeplerCompute& kepler_com
stage = Shader::Stage::Compute;
local_memory_size = qmd.local_pos_alloc + qmd.local_crs_alloc;
texture_bound = kepler_compute->regs.tex_cb_index;
+ is_propietary_driver = texture_bound == 2;
shared_memory_size = qmd.shared_alloc;
workgroup_size = {qmd.block_dim_x, qmd.block_dim_y, qmd.block_dim_z};
}
@@ -498,6 +500,7 @@ void FileEnvironment::Deserialize(std::ifstream& file) {
file.read(reinterpret_cast<char*>(&gp_passthrough_mask), sizeof(gp_passthrough_mask));
}
}
+ is_propietary_driver = texture_bound == 2;
}
void FileEnvironment::Dump(u64 hash) {