Skip to content

Commit 2a2e1fa

Browse files
committed
Pass config arg in FFI layer
1 parent 9d86cd6 commit 2a2e1fa

File tree

1 file changed

+1
-1
lines changed
  • crates/processing_ffi/src

1 file changed

+1
-1
lines changed

crates/processing_ffi/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ mod error;
1717
#[unsafe(no_mangle)]
1818
pub extern "C" fn processing_init() {
1919
error::clear_error();
20-
error::check(init);
20+
error::check(|| init(None));
2121
}
2222

2323
/// Create a WebGPU surface from a macOS NSWindow handle.

0 commit comments

Comments
 (0)