Skip to content

Commit

Permalink
TODO: WGPUAdapterInfo.architecture src/lib.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Rajesh Malviya <[email protected]>
  • Loading branch information
lalitshankarchowdhury and rajveermalviya authored Sep 8, 2024
1 parent 1874ade commit 520e01b
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 @@ -700,7 +700,7 @@ pub unsafe extern "C" fn wgpuAdapterGetInfo(
};

info.vendor = CString::new(result.driver).unwrap().into_raw();
info.architecture = CString::default().into_raw();
info.architecture = CString::default().into_raw(); // TODO(webgpu.h)
info.device = CString::new(result.name).unwrap().into_raw();
info.description = CString::new(result.driver_info).unwrap().into_raw();
info.backendType = map_backend_type(result.backend);
Expand Down

0 comments on commit 520e01b

Please sign in to comment.