Add initial base implementation for WebGPU rendering backend

This commit is contained in:
2026-02-23 11:49:45 +01:00
parent 4ca10c7869
commit 6081ed35bc
29 changed files with 3565 additions and 2 deletions
+5
View File
@@ -175,6 +175,11 @@ bool GraphicsService::Init()
extern GPUDevice* CreateGPUDevicePS5();
if (!device)
device = CreateGPUDevicePS5();
#endif
#if GRAPHICS_API_WEBGPU
extern GPUDevice* CreateGPUDeviceWebGPU();
if (!device)
device = CreateGPUDeviceWebGPU();
#endif
}