Sends an event to the Glutin thread
(&self, event: GlutinThreadEvent)
| 27 | /// Sends an event to the Glutin thread |
| 28 | /// |
| 29 | pub fn send_event(&self, event: GlutinThreadEvent) { |
| 30 | self.event_proxy.desync(move |proxy| { proxy.send_event(event).ok(); }); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | /// |
no outgoing calls
no test coverage detected