We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 385daff commit e54afd1Copy full SHA for e54afd1
crates/processing_render/src/lib.rs
@@ -195,10 +195,7 @@ pub fn create_surface(
195
let content_view: Option<Retained<NSView>> = ns_window_ref.contentView();
196
197
match content_view {
198
- Some(view) => {
199
-
200
- Retained::as_ptr(&view) as *mut std::ffi::c_void
201
- }
+ Some(view) => Retained::as_ptr(&view) as *mut std::ffi::c_void,
202
None => {
203
return Err(error::ProcessingError::InvalidWindowHandle);
204
}
0 commit comments