From 4db18d85c12c15e86a39f848829d67a6bb0ee2e0 Mon Sep 17 00:00:00 2001 From: ickshonpe Date: Wed, 30 Oct 2024 20:06:15 +0000 Subject: [PATCH] Remove the `Globals` binding from the box shadow shader (#16177) # Objective Remove the `Globals` binding from the box shadow shader. It isn't used and was added by mistake. --- crates/bevy_ui/src/render/box_shadow.wgsl | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/bevy_ui/src/render/box_shadow.wgsl b/crates/bevy_ui/src/render/box_shadow.wgsl index fc78f9490c..91d8e026eb 100644 --- a/crates/bevy_ui/src/render/box_shadow.wgsl +++ b/crates/bevy_ui/src/render/box_shadow.wgsl @@ -5,7 +5,6 @@ const PI: f32 = 3.14159265358979323846; const SAMPLES: i32 = #SHADOW_SAMPLES; @group(0) @binding(0) var view: View; -@group(0) @binding(1) var globals: Globals; struct BoxShadowVertexOutput { @builtin(position) position: vec4,