pump.lua 440 B

12345678910111213
  1. return {
  2. summary = 'Pump new events into the queue for processing.',
  3. description = [[
  4. Fills the event queue with unprocessed events from the operating system. This function should
  5. be called often, otherwise the operating system will consider the application unresponsive.
  6. This function is called in the default implementation of `lovr.run`.
  7. ]],
  8. arguments = {},
  9. returns = {},
  10. related = {
  11. 'lovr.event.poll'
  12. }
  13. }