| 502 | } |
| 503 | |
| 504 | void PiuView_onIdle(xsMachine* the) |
| 505 | { |
| 506 | PiuView* self = PIU(View, xsThis); |
| 507 | PiuApplication* application = (*self)->application; |
| 508 | xsVars(2); |
| 509 | if (!application) return; |
| 510 | // (*self)->updating = 1; |
| 511 | // (*self)->idleTicks = PiuViewTicks(self); |
| 512 | PiuApplicationDeferContents(the, application); |
| 513 | PiuApplicationIdleContents(application); |
| 514 | PiuApplicationTouchIdle(application); |
| 515 | PiuApplicationAdjust(application); |
| 516 | // (*self)->updating = 0; |
| 517 | PiuApplicationIdleCheck(application); |
| 518 | // (*self)->idleTicks = 0; |
| 519 | } |
| 520 | |
| 521 | void PiuView_onMessage(xsMachine* the) |
| 522 | { |
nothing calls this directly
no test coverage detected