| 121 | } |
| 122 | |
| 123 | void vtkVRRenderWindow::AddDeviceHandle(uint32_t handle) |
| 124 | { |
| 125 | auto found = this->DeviceHandleToDeviceDataMap.find(handle); |
| 126 | if (found == this->DeviceHandleToDeviceDataMap.end()) |
| 127 | { |
| 128 | this->DeviceHandleToDeviceDataMap[handle] = {}; |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | void vtkVRRenderWindow::AddDeviceHandle(uint32_t handle, vtkEventDataDevice device) |
| 133 | { |
no test coverage detected