From 5ce69d02734d2d289b927564eb38fb887c131dd6 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Tue, 16 Nov 2021 23:20:39 -0700 Subject: [PATCH] gpu: correct Force32 explanation Signed-off-by: Stephen Gutekanst --- gpu/src/dawn/dawn_native_c.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gpu/src/dawn/dawn_native_c.cpp b/gpu/src/dawn/dawn_native_c.cpp index 73d620a2..86812b60 100644 --- a/gpu/src/dawn/dawn_native_c.cpp +++ b/gpu/src/dawn/dawn_native_c.cpp @@ -210,7 +210,8 @@ MACH_EXPORT MachUtilsBackendBinding machUtilsCreateBinding(WGPUBackendType backe cppBackendType = wgpu::BackendType::Vulkan; break; case WGPUBackendType_Force32: - // TODO: what would this indicate? + // Force32 is just to force the size of the C enum type to 32-bits, so this is technically + // an illegal input. cppBackendType = wgpu::BackendType::Null; break; }