| 574 | } |
| 575 | |
| 576 | void RemoteGUIHelper::setUpAxis(int axis) |
| 577 | { |
| 578 | GraphicsSharedMemoryCommand* cmd = m_data->getAvailableSharedMemoryCommand(); |
| 579 | if (cmd) |
| 580 | { |
| 581 | cmd->m_updateFlags = 0; |
| 582 | cmd->m_upAxisYCommand.m_enableUpAxisY = axis == 1; |
| 583 | cmd->m_type = GFX_CMD_0; |
| 584 | m_data->submitClientCommand(*cmd); |
| 585 | const GraphicsSharedMemoryStatus* status = 0; |
| 586 | while ((status = m_data->processServerStatus()) == 0) |
| 587 | { |
| 588 | } |
| 589 | } |
| 590 | } |
| 591 | void RemoteGUIHelper::resetCamera(float camDist, float yaw, float pitch, float camPosX, float camPosY, float camPosZ) |
| 592 | { |
| 593 | } |