1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-01 14:20:04 -04:00

Add a comment

This commit is contained in:
Emil Ernerfeldt
2023-11-13 15:53:29 +01:00
parent b179ddce86
commit 4d7fc70803

View File

@@ -1892,6 +1892,8 @@ mod wgpu_integration {
struct WgpuWinitRunning { struct WgpuWinitRunning {
integration: epi_integration::EpiIntegration, integration: epi_integration::EpiIntegration,
app: Box<dyn epi::App>, app: Box<dyn epi::App>,
/// Wrapped in an `Rc<RefCell<…>>` so it can be re-entrantly shared via a weak-pointer.
shared: Rc<RefCell<SharedState>>, shared: Rc<RefCell<SharedState>>,
} }