Skip to content

Commit

Permalink
Fix incorrect function call (#432)
Browse files Browse the repository at this point in the history
  • Loading branch information
fyellin authored Sep 30, 2024
1 parent 58c8356 commit f8b5cf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4315,7 +4315,7 @@ pub unsafe extern "C" fn wgpuRenderPassEncoderMultiDrawIndirectCount(
let count_buffer_id = count_buffer.as_ref().expect("invalid count buffer").id;
let encoder = pass.encoder.as_mut().unwrap();

match encoder.multi_draw_indexed_indirect_count(
match encoder.multi_draw_indirect_count(
&pass.context,
buffer_id,
offset,
Expand Down

0 comments on commit f8b5cf5

Please sign in to comment.