From 795db84f389380682a5514df90ccd910c3186a0d Mon Sep 17 00:00:00 2001 From: Chris Date: Fri, 12 Feb 2021 04:29:06 +0100 Subject: [PATCH] [rs] Correct FragmentState targets comment --- 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 84036de60b..66dd6fafff 100644 --- a/wgpu/src/lib.rs +++ b/wgpu/src/lib.rs @@ -1198,7 +1198,7 @@ pub struct FragmentState<'a> { /// The name of the entry point in the compiled shader. There must be a function that returns /// void with this name in the shader. pub entry_point: &'a str, - /// The format of any vertex buffers used with this pipeline. + /// The color state of the render targets. pub targets: &'a [ColorTargetState], }