| 67 | } |
| 68 | |
| 69 | void eyeTracker3DCallback(void * /*userdata*/, |
| 70 | const OSVR_TimeValue * /*timestamp*/, |
| 71 | const OSVR_EyeTracker3DReport *report) { |
| 72 | std::cout << "Got 3D Eye Tracker Report: for sensor #" << report->sensor |
| 73 | << std::endl; |
| 74 | printEyeTracker3DReport(report); |
| 75 | } |
| 76 | |
| 77 | void eyeTrackerBlinkCallback(void * /*userdata*/, |
| 78 | const OSVR_TimeValue * /*timestamp*/, |
nothing calls this directly
no test coverage detected