From 7c7fea2e32dd4d7de99370f371b70723a393b2ea Mon Sep 17 00:00:00 2001 From: firestar99 Date: Fri, 5 Sep 2025 00:18:10 +0200 Subject: [PATCH] shaders-rt: fix wgpu label name --- .../src/shader_runtime/per_pixel_adjust_runtime.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/node-graph/wgpu-executor/src/shader_runtime/per_pixel_adjust_runtime.rs b/node-graph/wgpu-executor/src/shader_runtime/per_pixel_adjust_runtime.rs index d958e0650d..928f35a0b0 100644 --- a/node-graph/wgpu-executor/src/shader_runtime/per_pixel_adjust_runtime.rs +++ b/node-graph/wgpu-executor/src/shader_runtime/per_pixel_adjust_runtime.rs @@ -160,7 +160,9 @@ impl PerPixelAdjustGraphicsPipeline { let device = &context.device; let name = self.name.as_str(); - let mut cmd = device.create_command_encoder(&wgpu::CommandEncoderDescriptor { label: Some("gpu_invert") }); + let mut cmd = device.create_command_encoder(&wgpu::CommandEncoderDescriptor { + label: Some(&format!("{name} cmd encoder")), + }); let out = textures .iter() .map(|instance| {