We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25afc6e commit 254d33cCopy full SHA for 254d33c
src/lib.rs
@@ -25,9 +25,7 @@ pub use error::SwBufError;
25
use raw_window_handle::{HasRawDisplayHandle, HasRawWindowHandle, RawDisplayHandle, RawWindowHandle};
26
27
/// An instance of this struct contains the platform-specific data that must be managed in order to
28
-/// write to a window on that platform. This struct owns the window that this data corresponds to
29
-/// to ensure safety, as that data must be destroyed before the window itself is destroyed. You may
30
-/// access the underlying window via [`window`](Self::window) and [`window_mut`](Self::window_mut).
+/// write to a window on that platform.
31
pub struct GraphicsContext {
32
graphics_context_impl: Box<dyn GraphicsContextImpl>,
33
}
0 commit comments