Browse Source

SupportedLimitsExtras.chain should be a ChainedStructOut to properly chain from SupportedLimits

Matthew Pohlmann 1 year ago
parent
commit
4bf9de7237
1 changed files with 1 additions and 1 deletions
  1. 1 1
      vendor/wgpu/wgpu_native_types.odin

+ 1 - 1
vendor/wgpu/wgpu_native_types.odin

@@ -79,7 +79,7 @@ RequiredLimitsExtras :: struct {
 }
 
 SupportedLimitsExtras :: struct {
-	using chain: ChainedStruct,
+	using chain: ChainedStructOut,
 	limits: NativeLimits,
 }