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