mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-12-08 21:26:17 +00:00
Add no_mangle to extern "C" fn
This commit is contained in:
parent
aab47ae499
commit
0a4a71b345
@ -40,6 +40,7 @@ pub extern "C" fn wgpu_compute_pass_end_pass(
|
||||
pass.cmb_id.value
|
||||
}
|
||||
|
||||
#[no_mangle]
|
||||
pub extern "C" fn wgpu_compute_pass_set_bind_group(
|
||||
pass_id: ComputePassId, index: u32, bind_group_id: BindGroupId,
|
||||
) {
|
||||
@ -55,6 +56,7 @@ pub extern "C" fn wgpu_compute_pass_set_bind_group(
|
||||
.bind_compute_descriptor_sets(layout, index as usize, iter::once(set), &[]);
|
||||
}
|
||||
|
||||
#[no_mangle]
|
||||
pub extern "C" fn wgpu_compute_pass_set_pipeline(
|
||||
pass_id: ComputePassId, pipeline_id: ComputePipelineId,
|
||||
) {
|
||||
@ -68,6 +70,7 @@ pub extern "C" fn wgpu_compute_pass_set_pipeline(
|
||||
.bind_compute_pipeline(pipeline);
|
||||
}
|
||||
|
||||
#[no_mangle]
|
||||
pub extern "C" fn wgpu_compute_pass_dispatch(
|
||||
pass_id: ComputePassId, x: u32, y: u32, z: u32,
|
||||
) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user