| 59 | } |
| 60 | |
| 61 | void eyeTracker2DCallback(void * /*userdata*/, |
| 62 | const OSVR_TimeValue * /*timestamp*/, |
| 63 | const OSVR_EyeTracker2DReport *report) { |
| 64 | std::cout << "Got 2D Eye Tracker Report: for sensor #" << report->sensor |
| 65 | << std::endl; |
| 66 | printEyeTracker2DReport(report); |
| 67 | } |
| 68 | |
| 69 | void eyeTracker3DCallback(void * /*userdata*/, |
| 70 | const OSVR_TimeValue * /*timestamp*/, |
nothing calls this directly
no test coverage detected