diff --git a/gpu/src/render_pipeline.zig b/gpu/src/render_pipeline.zig index 7bd8e93b..3e9f2c1c 100644 --- a/gpu/src/render_pipeline.zig +++ b/gpu/src/render_pipeline.zig @@ -32,7 +32,7 @@ pub const RenderPipelineDescriptor = extern struct { layout: ?PipelineLayout, vertex: VertexState, primitive: PrimitiveState, - depth_stencil: ?*const DepthStencilState = null, // nullable + depth_stencil: ?*const DepthStencilState, multisample: MultisampleState, - fragment: ?*const FragmentState = null, // nullable + fragment: ?*const FragmentState, };