Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Albert Gräf
Gem
Commits
b0108ee2
Commit
b0108ee2
authored
Mar 28, 2019
by
IOhannes m zmölnig
Browse files
fixed error in optitrack macro
parent
b52288f1
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/videoOptiTrack/videoOptiTrack.cpp
View file @
b0108ee2
...
@@ -415,9 +415,9 @@ void videoOptiTrack::getProperties(gem::Properties&props)
...
@@ -415,9 +415,9 @@ void videoOptiTrack::getProperties(gem::Properties&props)
continue
;
continue
;
}
}
#define GETCAMERAPROP_BOOL(name) if(#name == key) {d=m_camera->
##
name(); props.set(key, d); continue; } else d=0
#define GETCAMERAPROP_BOOL(name) if(#name == key) {d=m_camera->name(); props.set(key, d); continue; } else d=0
#define GETCAMERAPROP_INT(name) if(#name == key) {d=m_camera->
##
name(); props.set(key, d); continue; } else d=0
#define GETCAMERAPROP_INT(name) if(#name == key) {d=m_camera->name(); props.set(key, d); continue; } else d=0
#define GETCAMERAPROP_STR(name) if(#name == key) {s=m_camera->
##
name(); props.set(key, s); continue; } else d=0
#define GETCAMERAPROP_STR(name) if(#name == key) {s=m_camera->name(); props.set(key, s); continue; } else d=0
GETCAMERAPROP_BOOL
(
AEC
);
GETCAMERAPROP_BOOL
(
AEC
);
GETCAMERAPROP_BOOL
(
AGC
);
GETCAMERAPROP_BOOL
(
AGC
);
GETCAMERAPROP_BOOL
(
ContinuousIR
);
GETCAMERAPROP_BOOL
(
ContinuousIR
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment