mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
18 lines
311 B
C++
18 lines
311 B
C++
#include "stdafx.h"
|
|
#include "NullGSRender.h"
|
|
|
|
u64 NullGSRender::get_cycles()
|
|
{
|
|
return thread_ctrl::get_cycles(static_cast<named_thread<NullGSRender>&>(*this));
|
|
}
|
|
|
|
NullGSRender::NullGSRender(utils::serial* ar) noexcept : GSRender(ar)
|
|
{
|
|
}
|
|
|
|
void NullGSRender::end()
|
|
{
|
|
execute_nop_draw();
|
|
rsx::thread::end();
|
|
}
|