shaders-rt: fix wgpu label name

This commit is contained in:
firestar99
2025-09-05 00:18:10 +02:00
parent e3e0fbe75c
commit 7c7fea2e32

View File

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