diff options
Diffstat (limited to 'components/webgpu/render_commands.rs')
-rw-r--r-- | components/webgpu/render_commands.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/webgpu/render_commands.rs b/components/webgpu/render_commands.rs index 7aae2e4a660..3cd374e4118 100644 --- a/components/webgpu/render_commands.rs +++ b/components/webgpu/render_commands.rs @@ -85,7 +85,7 @@ pub fn apply_render_command( index, bind_group_id, offsets, - } => global.render_pass_set_bind_group(pass, index, bind_group_id, &offsets), + } => global.render_pass_set_bind_group(pass, index, Some(bind_group_id), &offsets), RenderCommand::SetViewport { x, y, |