summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFernandoS27 <fsahmkow27@gmail.com>2021-03-25 20:27:09 +0100
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:24 +0200
commitf5672777c8af4700c9e0fc32af52cb2563f564f4 (patch)
treeabb38c87d961475efecff436f2c1a76247c5f8be
parentshader: Implement TLD4S. (diff)
downloadyuzu-f5672777c8af4700c9e0fc32af52cb2563f564f4.tar
yuzu-f5672777c8af4700c9e0fc32af52cb2563f564f4.tar.gz
yuzu-f5672777c8af4700c9e0fc32af52cb2563f564f4.tar.bz2
yuzu-f5672777c8af4700c9e0fc32af52cb2563f564f4.tar.lz
yuzu-f5672777c8af4700c9e0fc32af52cb2563f564f4.tar.xz
yuzu-f5672777c8af4700c9e0fc32af52cb2563f564f4.tar.zst
yuzu-f5672777c8af4700c9e0fc32af52cb2563f564f4.zip
-rw-r--r--src/shader_recompiler/backend/spirv/emit_context.cpp6
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate/impl/exit_program.cpp2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/shader_recompiler/backend/spirv/emit_context.cpp b/src/shader_recompiler/backend/spirv/emit_context.cpp
index 5db4a9082..3d028db0f 100644
--- a/src/shader_recompiler/backend/spirv/emit_context.cpp
+++ b/src/shader_recompiler/backend/spirv/emit_context.cpp
@@ -359,6 +359,12 @@ void EmitContext::DefineOutputs(const Info& info) {
Decorate(frag_color[i], spv::Decoration::Location, static_cast<u32>(i));
Name(frag_color[i], fmt::format("frag_color{}", i));
}
+ if (!info.stores_frag_depth) {
+ return;
+ }
+ frag_depth = DefineOutput(*this, F32[1]);
+ Decorate(frag_depth, spv::Decoration::BuiltIn, static_cast<u32>(spv::BuiltIn::FragDepth));
+ Name(frag_depth, "frag_depth");
}
}
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/exit_program.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/exit_program.cpp
index ea9b33da9..58a53c0ec 100644
--- a/src/shader_recompiler/frontend/maxwell/translate/impl/exit_program.cpp
+++ b/src/shader_recompiler/frontend/maxwell/translate/impl/exit_program.cpp
@@ -25,7 +25,7 @@ void ExitFragment(TranslatorVisitor& v) {
throw NotImplementedException("Sample mask");
}
if (sph.ps.omap.depth != 0) {
- throw NotImplementedException("Fragment depth");
+ v.ir.SetFragDepth(v.F(src_reg + 1));
}
}
} // Anonymous namespace