Skip to content
Snippets Groups Projects
Commit 11c221cc authored by Subv's avatar Subv
Browse files

Shader/F2I: Implemented the negate bit in the F2I instruction.

parent 40f83fee
No related branches found
No related tags found
No related merge requests found
......@@ -1306,6 +1306,10 @@ private:
op_a = "abs(" + op_a + ')';
}
if (instr.conversion.negate_a) {
op_a = "-(" + op_a + ')';
}
switch (instr.conversion.f2i.rounding) {
case Tegra::Shader::F2iRoundingOp::None:
break;
......
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