Skip to content

Commit 8e3054a

Browse files
authoredJan 29, 2021
Merge pull request #299 from HellButcher/master
call `Instance::destroy_surface`
2 parents f15cf42 + d906ee2 commit 8e3054a

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed
 

‎factory/src/factory.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,13 @@ where
781781
self.instance.id(),
782782
"Resource is not owned by specified instance"
783783
);
784-
drop(surface);
784+
unsafe {
785+
surface.dispose(
786+
self.instance
787+
.as_instance()
788+
.expect("Cannot destroy surface without instance"),
789+
);
790+
}
785791
}
786792

787793
/// Create target out of rendering surface.

‎wsi/src/lib.rs

+10
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,16 @@ where
217217
usage,
218218
})
219219
}
220+
221+
/// Dispose of Surface.
222+
///
223+
/// # Safety
224+
///
225+
/// Surface must be not in use.
226+
pub unsafe fn dispose(self, instance: &Instance<B>) {
227+
self.assert_instance_owner(instance);
228+
instance.destroy_surface(self.raw);
229+
}
220230
}
221231

222232
unsafe fn create_swapchain<B: Backend>(

0 commit comments

Comments
 (0)
Please sign in to comment.