Files
Aerofoil/PortabilityLayer/HostSuspendHook.cpp
2021-03-26 17:05:38 -04:00

18 lines
361 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);
}
}