Skip to content
Snippets Groups Projects
Commit d08fd7e8 authored by bunnei's avatar bunnei
Browse files

gl_shader_decompiler: Skip RRO instruction.

parent 8b28dc55
No related branches found
No related tags found
No related merge requests found
...@@ -431,6 +431,10 @@ private: ...@@ -431,6 +431,10 @@ private:
} }
break; break;
} }
case OpCode::Id::RRO: {
NGLOG_DEBUG(HW_GPU, "Skipping RRO instruction");
break;
}
default: { default: {
NGLOG_CRITICAL(HW_GPU, "Unhandled arithmetic instruction: {}", opcode->GetName()); NGLOG_CRITICAL(HW_GPU, "Unhandled arithmetic instruction: {}", opcode->GetName());
UNREACHABLE(); UNREACHABLE();
......
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