Files
Aerofoil/PortabilityLayer/HostSuspendHook.cpp
2021-03-29 21:41:11 -04:00

18 lines
351 B
C++

#include "HostSuspendHook.h"
#include "HostSuspendCallArgument.h"
#include "DisplayDeviceManager.h"
#include "PLDrivers.h"
#include "IGpDisplayDriver.h"
namespace PortabilityLayer
{
void RenderFrames(unsigned int ticks)
{
PLDrivers::GetDisplayDriver()->ServeTicks(ticks);
DisplayDeviceManager::GetInstance()->IncrementTickCount(ticks);
}
}