mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
18 lines
351 B
C++
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);
|
|
}
|
|
}
|