| 805 | } |
| 806 | |
| 807 | float Freenect2DeviceImpl::getColorSettingFloat(ColorSettingCommandType cmd) |
| 808 | { |
| 809 | uint32_t data = getColorSetting(cmd); |
| 810 | float out; |
| 811 | memcpy(&out, &data, sizeof(out)); |
| 812 | return out; |
| 813 | } |
| 814 | |
| 815 | void Freenect2DeviceImpl::setLedStatus(LedSettings led) |
| 816 | { |
nothing calls this directly
no outgoing calls
no test coverage detected