Fix various issues in WebGPU backend

This commit is contained in:
Wojtek Figat
2026-03-16 16:39:18 +01:00
parent a5bbf0dbde
commit 427f4647fc
9 changed files with 53 additions and 5 deletions

View File

@@ -244,3 +244,10 @@ void GraphicsService::Dispose()
{
// Device is disposed AFTER Content (faster and safer because there is no assets so there is less gpu resources to cleanup)
}
#if PLATFORM_WEB && !GRAPHICS_API_WEBGPU
// Fix missing method when using Null backend on Web
void SetWebGPUTextureViewSampler(GPUTextureView* view, uint32 samplerType)
{
}
#endif