summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/glsl_decompiler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/shader/glsl_decompiler.cpp')
-rw-r--r--src/video_core/shader/glsl_decompiler.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/video_core/shader/glsl_decompiler.cpp b/src/video_core/shader/glsl_decompiler.cpp
index 1aff62882..abc9a556d 100644
--- a/src/video_core/shader/glsl_decompiler.cpp
+++ b/src/video_core/shader/glsl_decompiler.cpp
@@ -915,16 +915,6 @@ private:
std::string HNegate(Operation operation) {
const auto GetNegate = [&](std::size_t index) -> std::string {
- if (const auto pred = std::get_if<PredicateNode>(operation[index])) {
- if (!pred->IsNegated()) {
- switch (pred->GetIndex()) {
- case Tegra::Shader::Pred::UnusedIndex:
- return "-1";
- case Tegra::Shader::Pred::NeverExecute:
- return "1";
- }
- }
- }
return VisitOperand(operation, index, Type::Bool) + " ? -1 : 1";
};
const std::string value = '(' + VisitOperand(operation, 0, Type::HalfFloat) + " * vec2(" +