| 394 | } |
| 395 | |
| 396 | void PiuApplicationTouchMoved(PiuApplication* self, xsIntegerValue index, PiuCoordinate x, PiuCoordinate y, xsNumberValue ticks) |
| 397 | { |
| 398 | if (index < (*self)->touchLinkCount) { |
| 399 | PiuTouchLink* link = (*self)->touchLinks[index]; |
| 400 | PiuContent* content = (*link)->content; |
| 401 | if (content) { |
| 402 | PiuTouchLinkAppendSample(link, x, y, ticks); |
| 403 | } |
| 404 | } |
| 405 | } |
| 406 | |
| 407 | void PiuDeferLinkCreate(xsMachine* the) |
| 408 | { |
no test coverage detected