From 8732f8309369226ceb21379dc9b9c985abec4615 Mon Sep 17 00:00:00 2001 From: Charlotte McElwain Date: Sun, 25 Aug 2024 15:23:59 -0700 Subject: [PATCH] Ci. --- crates/bevy_render/src/render_resource/bind_group.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_render/src/render_resource/bind_group.rs b/crates/bevy_render/src/render_resource/bind_group.rs index dc24c4f3f151e..cb3a6fb347631 100644 --- a/crates/bevy_render/src/render_resource/bind_group.rs +++ b/crates/bevy_render/src/render_resource/bind_group.rs @@ -103,7 +103,7 @@ impl Deref for BindGroup { /// @group(2) @binding(2) var color_sampler: sampler; /// @group(2) @binding(3) var storage_buffer: array; /// @group(2) @binding(4) var raw_buffer: array; -/// @group(2) @binding(4) var storage_texture: texture_storage_2d; +/// @group(2) @binding(5) var storage_texture: texture_storage_2d; /// ``` /// Note that the "group" index is determined by the usage context. It is not defined in [`AsBindGroup`]. For example, in Bevy material bind groups /// are generally bound to group 2.