From ac5ae40baf030befeceac30a0a4379dc7d729185 Mon Sep 17 00:00:00 2001 From: Joshua Yanovski Date: Thu, 8 Sep 2022 10:16:03 -0700 Subject: [PATCH] Maybe fix out of VRAM issues for some people. --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b05794f67c..ad54f5b97e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7632,7 +7632,7 @@ dependencies = [ [[package]] name = "wgpu" version = "0.8.0" -source = "git+https://github.com/pythonesque/wgpu.git?rev=c948ade0e723220dacc4cb34e899cac1b1b93422#c948ade0e723220dacc4cb34e899cac1b1b93422" +source = "git+https://github.com/pythonesque/wgpu.git?rev=6f547242ea4bd649d874b6d19240f80ad0a752ad#6f547242ea4bd649d874b6d19240f80ad0a752ad" dependencies = [ "arrayvec 0.5.2", "js-sys", @@ -7652,7 +7652,7 @@ dependencies = [ [[package]] name = "wgpu-core" version = "0.8.0" -source = "git+https://github.com/pythonesque/wgpu.git?rev=c948ade0e723220dacc4cb34e899cac1b1b93422#c948ade0e723220dacc4cb34e899cac1b1b93422" +source = "git+https://github.com/pythonesque/wgpu.git?rev=6f547242ea4bd649d874b6d19240f80ad0a752ad#6f547242ea4bd649d874b6d19240f80ad0a752ad" dependencies = [ "arrayvec 0.5.2", "bitflags", @@ -7693,7 +7693,7 @@ dependencies = [ [[package]] name = "wgpu-types" version = "0.8.0" -source = "git+https://github.com/pythonesque/wgpu.git?rev=c948ade0e723220dacc4cb34e899cac1b1b93422#c948ade0e723220dacc4cb34e899cac1b1b93422" +source = "git+https://github.com/pythonesque/wgpu.git?rev=6f547242ea4bd649d874b6d19240f80ad0a752ad#6f547242ea4bd649d874b6d19240f80ad0a752ad" dependencies = [ "bitflags", "serde", diff --git a/Cargo.toml b/Cargo.toml index d0c23dcd99..e7792a5c7a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -123,7 +123,7 @@ nativeBuildInputs = ["pkg-config"] vek = { git = "https://github.com/yoanlcq/vek.git", rev = "84d5cb65841d46599a986c5477341bea4456be26" } # patch wgpu so we can use wgpu-profiler crate # wgpu = { git = "https://github.com/gfx-rs/wgpu.git", rev = "a92b8549a8e2cb9dac781bafc5ed32828f3caf46" } -wgpu = { git = "https://github.com/pythonesque/wgpu.git", rev = "c948ade0e723220dacc4cb34e899cac1b1b93422" } +wgpu = { git = "https://github.com/pythonesque/wgpu.git", rev = "6f547242ea4bd649d874b6d19240f80ad0a752ad" } # wgpu = { path = "../wgpu/wgpu" } # wgpu-core = { path = "../wgpu/wgpu-core" } # wgpu-types = { path = "../wgpu/wgpu-types" }