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| {