mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-25 19:40:13 +00:00
Only check for enabled JIT in Setup() to avoid race conditions
This commit is contained in:
parent
2796552790
commit
9db801c3db
@ -107,6 +107,8 @@ void ShaderSetup::Setup() {
|
||||
jit_shader = shader;
|
||||
shader_map[cache_key] = std::move(shader);
|
||||
}
|
||||
} else {
|
||||
jit_shader.reset();
|
||||
}
|
||||
#endif // ARCHITECTURE_x86_64
|
||||
}
|
||||
@ -130,8 +132,8 @@ void ShaderSetup::Run(UnitState<false>& state, const InputVertex& input, int num
|
||||
state.conditional_code[1] = false;
|
||||
|
||||
#ifdef ARCHITECTURE_x86_64
|
||||
if (VideoCore::g_shader_jit_enabled)
|
||||
jit_shader.lock().get()->Run(*this, state, config.main_offset);
|
||||
if (auto shader = jit_shader.lock())
|
||||
shader.get()->Run(*this, state, config.main_offset);
|
||||
else
|
||||
RunInterpreter(*this, state, config.main_offset);
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user