Update to latest wgpu c293d6dcea

This commit is contained in:
Dzmitry Malyshau
2020-01-02 01:20:44 -05:00
parent 3a9ed5b4aa
commit 8f083e54c5
4 changed files with 13 additions and 11 deletions

View File

@@ -27,13 +27,15 @@ vulkan = ["wgn/vulkan-portability"]
package = "wgpu-native"
version = "0.4"
git = "https://github.com/gfx-rs/wgpu"
rev = "b51053dc2dc3bbe9b2ba050fde42eeb6405fe092"
rev = "c293d6dcea0170bfa3835cfbd919f300560e0da6"
#path = "../wgpu/wgpu-native"
[dependencies.wgc]
package = "wgpu-core"
version = "0.1"
git = "https://github.com/gfx-rs/wgpu"
rev = "b51053dc2dc3bbe9b2ba050fde42eeb6405fe092"
rev = "c293d6dcea0170bfa3835cfbd919f300560e0da6"
#path = "../wgpu/wgpu-core"
[dependencies]
arrayvec = "0.5"

View File

@@ -187,9 +187,9 @@ impl framework::Example for Example {
mip_level: 0,
array_layer: 0,
origin: wgpu::Origin3d {
x: 0.0,
y: 0.0,
z: 0.0,
x: 0,
y: 0,
z: 0,
},
},
texture_extent,

View File

@@ -273,9 +273,9 @@ impl framework::Example for Example {
mip_level: 0,
array_layer: 0,
origin: wgpu::Origin3d {
x: 0.0,
y: 0.0,
z: 0.0,
x: 0,
y: 0,
z: 0,
},
},
texture_extent,

View File

@@ -209,9 +209,9 @@ impl framework::Example for Skybox {
mip_level: 0,
array_layer: i as u32,
origin: wgpu::Origin3d {
x: 0.0,
y: 0.0,
z: 0.0,
x: 0,
y: 0,
z: 0,
},
},
texture_extent,