Skip to content
Snippets Groups Projects
Commit 9b1c49a9 authored by Subv's avatar Subv
Browse files

Shader: Remove an unneeded assert, the negate bit is implemented for conversion instructions.

parent 6eba539f
No related branches found
No related tags found
No related merge requests found
...@@ -1239,8 +1239,6 @@ private: ...@@ -1239,8 +1239,6 @@ private:
break; break;
} }
case OpCode::Type::Conversion: { case OpCode::Type::Conversion: {
ASSERT_MSG(!instr.conversion.negate_a, "Unimplemented");
switch (opcode->GetId()) { switch (opcode->GetId()) {
case OpCode::Id::I2I_R: { case OpCode::Id::I2I_R: {
ASSERT_MSG(!instr.conversion.selector, "Unimplemented"); ASSERT_MSG(!instr.conversion.selector, "Unimplemented");
......
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