From 73b4257b17cc62ecc8df6d6aa3730bd9c6cba4b9 Mon Sep 17 00:00:00 2001 From: Jesse Talavera-Greenberg Date: Thu, 23 Feb 2023 08:54:52 -0500 Subject: [PATCH] Fix create_device_from_hal not using the provided hal_device's queue (#3523) --- wgpu/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs index 77c09d834b..080cb77830 100644 --- a/wgpu/src/lib.rs +++ b/wgpu/src/lib.rs @@ -1783,7 +1783,7 @@ impl Adapter { Queue { context, id: queue.id().into(), - data: Box::new(()), + data: Box::new(queue), }, ) })