There are some event types that glutin supports that are not supported by piston, namely glutin::WindowEvent::DroppedFile and glutin::WindowEvent::HoveredFile. I use piston_window to wrap glutin_window, but it would be nice to have access to these events from PistonWindow::next. Would it be possible to pass these events along to a PistonWindow, perhaps through a Event::Custom?
There are some event types that
glutin
supports that are not supported bypiston
, namelyglutin::WindowEvent::DroppedFile
andglutin::WindowEvent::HoveredFile
. I usepiston_window
to wrapglutin_window
, but it would be nice to have access to these events fromPistonWindow::next
. Would it be possible to pass these events along to aPistonWindow
, perhaps through aEvent::Custom
?