cached device motion ranges
| 23 | |
| 24 | // cached device motion ranges |
| 25 | struct DeviceMotionRange { |
| 26 | int deviceId; |
| 27 | int source; |
| 28 | float minX, maxX, minY, maxY; |
| 29 | }; |
| 30 | #define MOTION_RANGE_CACHE_MAX 128 |
| 31 | struct DeviceMotionRange _motion_range_cache[MOTION_RANGE_CACHE_MAX]; |
| 32 | int _motion_range_cache_items = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected