diff options
Diffstat (limited to 'ext/webgpu/src/command_encoder.rs')
-rw-r--r-- | ext/webgpu/src/command_encoder.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/webgpu/src/command_encoder.rs b/ext/webgpu/src/command_encoder.rs index e552a14e0..eb534f6bc 100644 --- a/ext/webgpu/src/command_encoder.rs +++ b/ext/webgpu/src/command_encoder.rs @@ -49,7 +49,7 @@ pub fn op_webgpu_create_command_encoder( gfx_put!(device => instance.device_create_command_encoder( device, &descriptor, - std::marker::PhantomData + () ) => state, WebGpuCommandEncoder) } @@ -84,7 +84,6 @@ pub fn op_webgpu_command_encoder_begin_render_pass( label: Option<String>, color_attachments: Vec<Option<GpuRenderPassColorAttachment>>, depth_stencil_attachment: Option<GpuRenderPassDepthStencilAttachment>, - _occlusion_query_set: Option<u32>, // not yet implemented ) -> Result<WebGpuResult, AnyError> { let command_encoder_resource = state .resource_table |