Skip to content
Snippets Groups Projects
Unverified Commit 3f81c38c authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #1027 from bunnei/fix-kil

gl_shader_decompiler: Fix GLSL compiler error with KIL instruction.
parents a921d225 c68aa652
No related branches found
No related tags found
No related merge requests found
...@@ -1667,7 +1667,15 @@ private: ...@@ -1667,7 +1667,15 @@ private:
} }
case OpCode::Id::KIL: { case OpCode::Id::KIL: {
ASSERT(instr.flow.cond == Tegra::Shader::FlowCondition::Always); ASSERT(instr.flow.cond == Tegra::Shader::FlowCondition::Always);
// Enclose "discard" in a conditional, so that GLSL compilation does not complain
// about unexecuted instructions that may follow this.
shader.AddLine("if (true) {");
++shader.scope;
shader.AddLine("discard;"); shader.AddLine("discard;");
--shader.scope;
shader.AddLine("}");
break; break;
} }
case OpCode::Id::BRA: { case OpCode::Id::BRA: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment