瀏覽代碼

gl_shader_decompiler: Skip RRO instruction.

bunnei 8 年之前
父節點
當前提交
d08fd7e86d
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      src/video_core/renderer_opengl/gl_shader_decompiler.cpp

+ 4 - 0
src/video_core/renderer_opengl/gl_shader_decompiler.cpp

@@ -431,6 +431,10 @@ private:
                 }
                 break;
             }
+            case OpCode::Id::RRO: {
+                NGLOG_DEBUG(HW_GPU, "Skipping RRO instruction");
+                break;
+            }
             default: {
                 NGLOG_CRITICAL(HW_GPU, "Unhandled arithmetic instruction: {}", opcode->GetName());
                 UNREACHABLE();