rsx: Improve Null Renderer

This commit is contained in:
Eladash 2022-06-12 14:43:16 +03:00 committed by Ivan
parent 2512e958fa
commit 264253757c
7 changed files with 23 additions and 0 deletions

View file

@ -640,6 +640,14 @@ namespace rsx
}
rsx::method_registers.current_draw_clause.compile();
if (g_cfg.video.disable_video_output)
{
rsxthr->execute_nop_draw();
rsxthr->rsx::thread::end();
return;
}
rsxthr->end();
}
else