from StreamBase
| 65 | |
| 66 | // from StreamBase |
| 67 | OniBool IrStream::isPropertySupported(int propertyId) |
| 68 | { |
| 69 | switch(propertyId) |
| 70 | { |
| 71 | default: |
| 72 | return VideoStream::isPropertySupported(propertyId); |
| 73 | case ONI_STREAM_PROPERTY_HORIZONTAL_FOV: |
| 74 | case ONI_STREAM_PROPERTY_VERTICAL_FOV: |
| 75 | return true; |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | OniStatus IrStream::getProperty(int propertyId, void* data, int* pDataSize) |
| 80 | { |
nothing calls this directly
no outgoing calls
no test coverage detected