diff options
Diffstat (limited to 'src/video_core/shader/shader.cpp')
| -rw-r--r-- | src/video_core/shader/shader.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/shader/shader.cpp b/src/video_core/shader/shader.cpp index d36d3d78e..161097610 100644 --- a/src/video_core/shader/shader.cpp +++ b/src/video_core/shader/shader.cpp | |||
| @@ -84,9 +84,9 @@ OutputVertex ShaderSetup::Run(UnitState<false>& state, const InputVertex& input, | |||
| 84 | if (VideoCore::g_shader_jit_enabled) | 84 | if (VideoCore::g_shader_jit_enabled) |
| 85 | jit_shader->Run(setup, state, config.main_offset); | 85 | jit_shader->Run(setup, state, config.main_offset); |
| 86 | else | 86 | else |
| 87 | RunInterpreter(state); | 87 | RunInterpreter(setup, state, config.main_offset); |
| 88 | #else | 88 | #else |
| 89 | RunInterpreter(state); | 89 | RunInterpreter(setup, state, config.main_offset); |
| 90 | #endif // ARCHITECTURE_x86_64 | 90 | #endif // ARCHITECTURE_x86_64 |
| 91 | 91 | ||
| 92 | // Setup output data | 92 | // Setup output data |
| @@ -157,7 +157,7 @@ DebugData<true> ShaderSetup::ProduceDebugInfo(const InputVertex& input, int num_ | |||
| 157 | state.conditional_code[0] = false; | 157 | state.conditional_code[0] = false; |
| 158 | state.conditional_code[1] = false; | 158 | state.conditional_code[1] = false; |
| 159 | 159 | ||
| 160 | RunInterpreter(state); | 160 | RunInterpreter(setup, state, config.main_offset); |
| 161 | return state.debug; | 161 | return state.debug; |
| 162 | } | 162 | } |
| 163 | 163 | ||