| 1563 | } |
| 1564 | |
| 1565 | void Director::queueOperation(AsyncOperation op, void* param) |
| 1566 | { |
| 1567 | #if defined(AX_PLATFORM_PC) |
| 1568 | _operations.enqueue([=]() { op(param); }); |
| 1569 | #else |
| 1570 | _renderView->queueOperation(op, param); |
| 1571 | #endif |
| 1572 | } |
| 1573 | |
| 1574 | #if defined(AX_PLATFORM_PC) |
| 1575 | void Director::processOperations() |
no test coverage detected