power_play/src/gpu/gpu.c

16 lines
249 B
C

#include "gpu.h"
#include "../kernel/kernel.h"
#if PlatformIsWindows
# include "dx12/gpu_dx12.c"
#else
# error Gpu layer not implemented for this platform
#endif
void GPU_Main(void)
{
RunOnce();
GPU_StartupDeps();
GPU_StartupCore();
}