16 lines
249 B
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();
|
|
}
|