From b2e126b1e21785bcceffdd0c85ea1d8d96a0dcdc Mon Sep 17 00:00:00 2001 From: Mac O'Brien Date: Thu, 23 May 2019 09:32:00 -0500 Subject: [PATCH] [rs] Fix RenderPipelineDescriptor.depth_stencil_state doc --- wgpu/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs index d1361669c5..e64f1d92b9 100644 --- a/wgpu/src/lib.rs +++ b/wgpu/src/lib.rs @@ -315,7 +315,7 @@ pub struct RenderPipelineDescriptor<'a> { /// The effect of draw calls on the color aspect of the output target. pub color_states: &'a [ColorStateDescriptor], - /// The effect of draw calls on the depth and stencil aspects of the target surface, if any. + /// The effect of draw calls on the depth and stencil aspects of the output target, if any. pub depth_stencil_state: Option, /// The format of any index buffers used with this pipeline.