2020-12-05 13:08:24 +01:00
|
|
|
#include "stdafx.h"
|
2015-10-05 02:42:48 +02:00
|
|
|
#include "NullGSRender.h"
|
|
|
|
|
|
2018-10-11 00:17:19 +02:00
|
|
|
u64 NullGSRender::get_cycles()
|
|
|
|
|
{
|
|
|
|
|
return thread_ctrl::get_cycles(static_cast<named_thread<NullGSRender>&>(*this));
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-04 15:02:17 +02:00
|
|
|
NullGSRender::NullGSRender(utils::serial* ar) noexcept : GSRender(ar)
|
2015-10-05 02:42:48 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-02 13:59:52 +01:00
|
|
|
void NullGSRender::end()
|
2018-12-12 09:59:23 +01:00
|
|
|
{
|
2020-02-23 15:28:50 +01:00
|
|
|
execute_nop_draw();
|
|
|
|
|
rsx::thread::end();
|
2018-12-12 09:59:23 +01:00
|
|
|
}
|