From c8e10f52c0b3cc8ea1211ddb8b13ad915c9f444f Mon Sep 17 00:00:00 2001 From: Corentin Wallez Date: Thu, 18 Jul 2019 18:09:04 +0200 Subject: [PATCH] Don't have fragmentStage optional --- webgpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webgpu.h b/webgpu.h index 741f8f4..0b72b22 100644 --- a/webgpu.h +++ b/webgpu.h @@ -588,7 +588,7 @@ typedef struct WGPURenderPipelineDescriptor { void const * nextInChain; WGPUPipelineLayout layout; WGPUPipelineStageDescriptor vertexStage; - WGPUPipelineStageDescriptor fragmentStage; + WGPUPipelineStageDescriptor const * fragmentStage; WGPUVertexInputDescriptor vertexInput; WGPUPrimitiveTopology primitiveTopology; WGPURasterizationStateDescriptor const * rasterizationState;