File tree 2 files changed +17
-1
lines changed
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -781,7 +781,13 @@ where
781
781
self . instance. id( ) ,
782
782
"Resource is not owned by specified instance"
783
783
) ;
784
- drop ( surface) ;
784
+ unsafe {
785
+ surface. dispose (
786
+ self . instance
787
+ . as_instance ( )
788
+ . expect ( "Cannot destroy surface without instance" ) ,
789
+ ) ;
790
+ }
785
791
}
786
792
787
793
/// Create target out of rendering surface.
Original file line number Diff line number Diff line change @@ -217,6 +217,16 @@ where
217
217
usage,
218
218
} )
219
219
}
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
+ }
220
230
}
221
231
222
232
unsafe fn create_swapchain < B : Backend > (
You can’t perform that action at this time.
0 commit comments