from StreamBase
| 135 | |
| 136 | // from StreamBase |
| 137 | OniBool ColorStream::isPropertySupported(int propertyId) |
| 138 | { |
| 139 | switch(propertyId) |
| 140 | { |
| 141 | default: |
| 142 | return VideoStream::isPropertySupported(propertyId); |
| 143 | |
| 144 | case ONI_STREAM_PROPERTY_HORIZONTAL_FOV: |
| 145 | case ONI_STREAM_PROPERTY_VERTICAL_FOV: |
| 146 | case ONI_STREAM_PROPERTY_AUTO_WHITE_BALANCE: |
| 147 | case ONI_STREAM_PROPERTY_AUTO_EXPOSURE: |
| 148 | return true; |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | OniStatus ColorStream::getProperty(int propertyId, void* data, int* pDataSize) |
| 153 | { |
nothing calls this directly
no outgoing calls
no test coverage detected