I am using Keyboard.isKeyDown(KEY_xxxx) to detect keypresses & have not included a call to Keyboard.poll() in the main loop.
This works, but am I creating a steadily growing list of unprocessed key events?
If so, would a periodic call to Keyboard.poll() clear them?
On a similar vein, do I need to call Mouse.poll() regularly to avoid a build up of mouse events?
Alan
/Edit - The description of Display.update() says it polls input devices. I do have that in my code. Hopefully that means there is no need to poll separately.

