We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1108b38 commit 72e5f47Copy full SHA for 72e5f47
src/environment.cpp
@@ -25,6 +25,10 @@ namespace librealsense
25
register_extrinsics(from, to, _id);
26
}
27
28
+ // The aim of this method is to add the profile to the graph extrinsics - as a leaf not connected to any other at this stage
29
+ // It is used when a profile is cloned
30
+ // The cloned profile will later on be connected to its owning stream by the method register_extrinsics
31
+ // (starting from init_stream_profiles method in the device's contructor)
32
void extrinsics_graph::register_profile(const stream_interface& profile)
33
{
34
std::lock_guard<std::mutex> lock(_mutex);
0 commit comments