Creates a drawing target that will render to a window
(window_properties: TProperties)
| 64 | /// Creates a drawing target that will render to a window |
| 65 | /// |
| 66 | pub fn create_drawing_window<'a, TProperties: 'a+FloWindowProperties>(window_properties: TProperties) -> DrawingTarget { |
| 67 | let (target, _events) = create_drawing_window_with_events(window_properties); |
| 68 | |
| 69 | // Dropping the events will stop the window from blocking when they're not handled |
| 70 | target |
| 71 | } |
| 72 | |
| 73 | /// |
| 74 | /// Creates a drawing target that will render to a window, along with a stream of events from that window |
no test coverage detected