SimpledisplayBackend.this

Initialize the backend using the given window.

Make sure to call SimpledisplayBackend.poll() *after* the Fluid draw call, and only do it once per frame, other Fluid might not be able to keep itself up to date with latest events.

Please note Fluid will register its own event handlers, so if you intend to use them, you should make sure to call whatever value was set previously.

auto oldMouseHandler = window.handleMouseEvent;
window.handleMouseEvent = (MouseEvent event) {
    oldMouseHandler(event);
    // ... do your stuff ...
};

Gamepad input is not supported for simpledisplay.

class SimpledisplayBackend
this
(
SimpleWindow window
)

Meta