From 3035dee9f14402f57d42ff0b362152140b4dca13 Mon Sep 17 00:00:00 2001 From: Leo Kettmeir Date: Mon, 30 Jan 2023 15:14:16 +0100 Subject: chore: update webgpu (#17534) --- ext/webgpu/src/binding.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/webgpu/src/binding.rs') diff --git a/ext/webgpu/src/binding.rs b/ext/webgpu/src/binding.rs index 7a35db503..4c4a864fd 100644 --- a/ext/webgpu/src/binding.rs +++ b/ext/webgpu/src/binding.rs @@ -199,7 +199,7 @@ pub fn op_webgpu_create_bind_group_layout( gfx_put!(device => instance.device_create_bind_group_layout( device, &descriptor, - std::marker::PhantomData + () ) => state, WebGpuBindGroupLayout) } @@ -234,7 +234,7 @@ pub fn op_webgpu_create_pipeline_layout( gfx_put!(device => instance.device_create_pipeline_layout( device, &descriptor, - std::marker::PhantomData + () ) => state, super::pipeline::WebGpuPipelineLayout) } @@ -317,6 +317,6 @@ pub fn op_webgpu_create_bind_group( gfx_put!(device => instance.device_create_bind_group( device, &descriptor, - std::marker::PhantomData + () ) => state, WebGpuBindGroup) } -- cgit v1.2.3