From 5a276459e9da169f37e1d47510c25a01a96e780d Mon Sep 17 00:00:00 2001 From: Mark Date: Wed, 27 Dec 2023 17:57:11 -0800 Subject: [PATCH] Labels --- src/render/texturearray/array.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/render/texturearray/array.rs b/src/render/texturearray/array.rs index ef35a2f..4fc2c62 100644 --- a/src/render/texturearray/array.rs +++ b/src/render/texturearray/array.rs @@ -45,7 +45,7 @@ impl TextureArray { }); let bind_group_layout = device.create_bind_group_layout(&wgpu::BindGroupLayoutDescriptor { - label: Some("texture_bind_group_layout"), + label: Some("TextureArray bind group layout"), entries: &[ // Texture data wgpu::BindGroupLayoutEntry { @@ -70,7 +70,7 @@ impl TextureArray { let views: Vec<&wgpu::TextureView> = loader.texture_data.iter().map(|x| &x.view).collect(); let bind_group = device.create_bind_group(&wgpu::BindGroupDescriptor { - label: Some("texture_bind_group"), + label: Some("TextureArray bind group"), layout: &bind_group_layout, entries: &[ wgpu::BindGroupEntry {