| 174 | } |
| 175 | |
| 176 | vtkMatrix4x4* vtkVRRenderWindow::GetDeviceToPhysicalMatrixForDeviceHandle(uint32_t handle) |
| 177 | { |
| 178 | auto found = this->DeviceHandleToDeviceDataMap.find(handle); |
| 179 | if (found == this->DeviceHandleToDeviceDataMap.end()) |
| 180 | { |
| 181 | return nullptr; |
| 182 | } |
| 183 | return found->second.DeviceToPhysicalMatrix; |
| 184 | } |
| 185 | |
| 186 | uint32_t vtkVRRenderWindow::GetDeviceHandleForDevice(vtkEventDataDevice idx, uint32_t index) |
| 187 | { |
no test coverage detected