mirror of
https://github.com/libretro/Play-.git
synced 2024-12-04 23:36:30 +00:00
691154cc12
Renamed ProcessImageTransfer to ProcessHostToLocalTransfer. Added ProcessLocalToHostTransfer function.
57 lines
615 B
C++
57 lines
615 B
C++
#include "GSH_Null.h"
|
|
|
|
CGSH_Null::CGSH_Null()
|
|
{
|
|
|
|
}
|
|
|
|
CGSH_Null::~CGSH_Null()
|
|
{
|
|
|
|
}
|
|
|
|
void CGSH_Null::InitializeImpl()
|
|
{
|
|
|
|
}
|
|
|
|
void CGSH_Null::ReleaseImpl()
|
|
{
|
|
|
|
}
|
|
|
|
void CGSH_Null::ProcessHostToLocalTransfer()
|
|
{
|
|
|
|
}
|
|
|
|
void CGSH_Null::ProcessLocalToHostTransfer()
|
|
{
|
|
|
|
}
|
|
|
|
void CGSH_Null::ProcessLocalToLocalTransfer()
|
|
{
|
|
|
|
}
|
|
|
|
void CGSH_Null::ProcessClutTransfer(uint32, uint32)
|
|
{
|
|
|
|
}
|
|
|
|
void CGSH_Null::ReadFramebuffer(uint32, uint32, void*)
|
|
{
|
|
|
|
}
|
|
|
|
CGSHandler::FactoryFunction CGSH_Null::GetFactoryFunction()
|
|
{
|
|
return std::bind(&CGSH_Null::GSHandlerFactory);
|
|
}
|
|
|
|
CGSHandler* CGSH_Null::GSHandlerFactory()
|
|
{
|
|
return new CGSH_Null();
|
|
}
|