diff --git a/examples/cube/main.rs b/examples/cube/main.rs index 10c57fa967..34408bf901 100644 --- a/examples/cube/main.rs +++ b/examples/cube/main.rs @@ -132,7 +132,7 @@ impl framework::Example for Example { ty: wgpu::BindingType::UniformBuffer, dynamic: false, multisampled: false, - texture_dimension: wgn::TextureViewDimension::D2, + texture_dimension: wgpu::TextureViewDimension::D2, }, wgpu::BindGroupLayoutBinding { binding: 1, @@ -140,7 +140,7 @@ impl framework::Example for Example { ty: wgpu::BindingType::SampledTexture, dynamic: false, multisampled: false, - texture_dimension: wgn::TextureViewDimension::D2, + texture_dimension: wgpu::TextureViewDimension::D2, }, wgpu::BindGroupLayoutBinding { binding: 2, @@ -148,7 +148,7 @@ impl framework::Example for Example { ty: wgpu::BindingType::Sampler, dynamic: false, multisampled: false, - texture_dimension: wgn::TextureViewDimension::D2, + texture_dimension: wgpu::TextureViewDimension::D2, }, ], }); diff --git a/examples/hello-compute/main.rs b/examples/hello-compute/main.rs index 4d59654e46..c84e72b48e 100644 --- a/examples/hello-compute/main.rs +++ b/examples/hello-compute/main.rs @@ -52,7 +52,7 @@ fn main() { ty: wgpu::BindingType::StorageBuffer, dynamic: false, multisampled: false, - texture_dimension: wgn::TextureViewDimension::D2, + texture_dimension: wgpu::TextureViewDimension::D2, }], }); diff --git a/examples/mipmap/main.rs b/examples/mipmap/main.rs index 821a2537b0..1c665a0ffd 100644 --- a/examples/mipmap/main.rs +++ b/examples/mipmap/main.rs @@ -79,7 +79,7 @@ impl Example { ty: wgpu::BindingType::SampledTexture, dynamic: false, multisampled: false, - texture_dimension: wgn::TextureViewDimension::D2, + texture_dimension: wgpu::TextureViewDimension::D2, }, wgpu::BindGroupLayoutBinding { binding: 1, @@ -87,7 +87,7 @@ impl Example { ty: wgpu::BindingType::Sampler, dynamic: false, multisampled: false, - texture_dimension: wgn::TextureViewDimension::D2, + texture_dimension: wgpu::TextureViewDimension::D2, }, ], }); @@ -223,7 +223,7 @@ impl framework::Example for Example { ty: wgpu::BindingType::UniformBuffer, dynamic: false, multisampled: false, - texture_dimension: wgn::TextureViewDimension::D2, + texture_dimension: wgpu::TextureViewDimension::D2, }, wgpu::BindGroupLayoutBinding { binding: 1, @@ -231,7 +231,7 @@ impl framework::Example for Example { ty: wgpu::BindingType::SampledTexture, dynamic: false, multisampled: false, - texture_dimension: wgn::TextureViewDimension::D2, + texture_dimension: wgpu::TextureViewDimension::D2, }, wgpu::BindGroupLayoutBinding { binding: 2, @@ -239,7 +239,7 @@ impl framework::Example for Example { ty: wgpu::BindingType::Sampler, dynamic: false, multisampled: false, - texture_dimension: wgn::TextureViewDimension::D2, + texture_dimension: wgpu::TextureViewDimension::D2, }, ], }); diff --git a/examples/shadow/main.rs b/examples/shadow/main.rs index 81e1537631..43947ecac9 100644 --- a/examples/shadow/main.rs +++ b/examples/shadow/main.rs @@ -220,7 +220,7 @@ impl framework::Example for Example { ty: wgpu::BindingType::UniformBuffer, dynamic: false, multisampled: false, - texture_dimension: wgn::TextureViewDimension::D2, + texture_dimension: wgpu::TextureViewDimension::D2, }], }); @@ -414,7 +414,7 @@ impl framework::Example for Example { ty: wgpu::BindingType::UniformBuffer, dynamic: false, multisampled: false, - texture_dimension: wgn::TextureViewDimension::D2, + texture_dimension: wgpu::TextureViewDimension::D2, }], }); let pipeline_layout = device.create_pipeline_layout(&wgpu::PipelineLayoutDescriptor { @@ -500,7 +500,7 @@ impl framework::Example for Example { ty: wgpu::BindingType::UniformBuffer, dynamic: false, multisampled: false, - texture_dimension: wgn::TextureViewDimension::D2, + texture_dimension: wgpu::TextureViewDimension::D2, }, wgpu::BindGroupLayoutBinding { binding: 1, // lights @@ -508,7 +508,7 @@ impl framework::Example for Example { ty: wgpu::BindingType::UniformBuffer, dynamic: false, multisampled: false, - texture_dimension: wgn::TextureViewDimension::D2, + texture_dimension: wgpu::TextureViewDimension::D2, }, wgpu::BindGroupLayoutBinding { binding: 2, @@ -516,7 +516,7 @@ impl framework::Example for Example { ty: wgpu::BindingType::SampledTexture, dynamic: false, multisampled: false, - texture_dimension: wgn::TextureViewDimension::D2, + texture_dimension: wgpu::TextureViewDimension::D2, }, wgpu::BindGroupLayoutBinding { binding: 3, @@ -524,7 +524,7 @@ impl framework::Example for Example { ty: wgpu::BindingType::Sampler, dynamic: false, multisampled: false, - texture_dimension: wgn::TextureViewDimension::D2, + texture_dimension: wgpu::TextureViewDimension::D2, }, ], }); diff --git a/tests/multithreaded_compute.rs b/tests/multithreaded_compute.rs index db61b4e870..cbb3b761da 100644 --- a/tests/multithreaded_compute.rs +++ b/tests/multithreaded_compute.rs @@ -54,7 +54,7 @@ fn multithreaded_compute() { ty: wgpu::BindingType::StorageBuffer, dynamic: false, multisampled: false, - texture_dimension: wgn::TextureViewDimension::D2, + texture_dimension: wgpu::TextureViewDimension::D2, }], });