mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-14 02:57:56 -05:00
Use new shader-jit signature for interpreter
This commit is contained in:
@ -84,9 +84,9 @@ OutputVertex ShaderSetup::Run(UnitState<false>& state, const InputVertex& input,
|
||||
if (VideoCore::g_shader_jit_enabled)
|
||||
jit_shader->Run(setup, state, config.main_offset);
|
||||
else
|
||||
RunInterpreter(state);
|
||||
RunInterpreter(setup, state, config.main_offset);
|
||||
#else
|
||||
RunInterpreter(state);
|
||||
RunInterpreter(setup, state, config.main_offset);
|
||||
#endif // ARCHITECTURE_x86_64
|
||||
|
||||
// Setup output data
|
||||
@ -157,7 +157,7 @@ DebugData<true> ShaderSetup::ProduceDebugInfo(const InputVertex& input, int num_
|
||||
state.conditional_code[0] = false;
|
||||
state.conditional_code[1] = false;
|
||||
|
||||
RunInterpreter(state);
|
||||
RunInterpreter(setup, state, config.main_offset);
|
||||
return state.debug;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user