MCPcopy Create free account
hub / github.com/OpenKinect/libfreenect2 / isPropertySupported

Method isPropertySupported

src/openni2/IrStream.cpp:67–77  ·  view source on GitHub ↗

from StreamBase

Source from the content-addressed store, hash-verified

65
66// from StreamBase
67OniBool 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
79OniStatus IrStream::getProperty(int propertyId, void* data, int* pDataSize)
80{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected