summaryrefslogtreecommitdiff
path: root/ext/webgpu/src/binding.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ext/webgpu/src/binding.rs')
-rw-r--r--ext/webgpu/src/binding.rs6
1 files changed, 3 insertions, 3 deletions
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)
}