| 184 | } |
| 185 | |
| 186 | uint32_t vtkVRRenderWindow::GetDeviceHandleForDevice(vtkEventDataDevice idx, uint32_t index) |
| 187 | { |
| 188 | for (auto& deviceData : this->DeviceHandleToDeviceDataMap) |
| 189 | { |
| 190 | if (deviceData.second.Device == idx && deviceData.second.Index == index) |
| 191 | { |
| 192 | return deviceData.first; |
| 193 | } |
| 194 | } |
| 195 | return InvalidDeviceIndex; |
| 196 | } |
| 197 | |
| 198 | uint32_t vtkVRRenderWindow::GetNumberOfDeviceHandlesForDevice(vtkEventDataDevice dev) |
| 199 | { |
no outgoing calls
no test coverage detected