diff options
Diffstat (limited to 'src/video_core/renderer_opengl')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_shader_decompiler.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp index ec9956edb..d5259e0b1 100644 --- a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp +++ b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp | |||
| @@ -1599,6 +1599,13 @@ private: | |||
| 1599 | // can ignore this when generating GLSL code. | 1599 | // can ignore this when generating GLSL code. |
| 1600 | break; | 1600 | break; |
| 1601 | } | 1601 | } |
| 1602 | case OpCode::Id::DEPBAR: | ||
| 1603 | case OpCode::Id::SYNC: { | ||
| 1604 | // TODO(Subv): Find out if we actually have to care about these instructions or if | ||
| 1605 | // the GLSL compiler takes care of that for us. | ||
| 1606 | LOG_WARNING(HW_GPU, "DEPBAR/SYNC instruction is stubbed"); | ||
| 1607 | break; | ||
| 1608 | } | ||
| 1602 | default: { | 1609 | default: { |
| 1603 | LOG_CRITICAL(HW_GPU, "Unhandled instruction: {}", opcode->GetName()); | 1610 | LOG_CRITICAL(HW_GPU, "Unhandled instruction: {}", opcode->GetName()); |
| 1604 | UNREACHABLE(); | 1611 | UNREACHABLE(); |