-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RS-Viewer] 3D D455 model added #11992
[RS-Viewer] 3D D455 model added #11992
Conversation
D455 and D457 cameras use d455.h file
src/gl/camera-shader.cpp
Outdated
@@ -164,6 +166,7 @@ namespace librealsense | |||
if (starts_with(dev_name, "Intel RealSense D415")) index = 0; | |||
if (starts_with(dev_name, "Intel RealSense D435")) index = 1; | |||
if (starts_with(dev_name, "Intel RealSense L5")) index = 2; | |||
if (starts_with(dev_name, "Intel RealSense D455") || starts_with(dev_name, "Intel RealSense D457")) index = 3; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's shorten this to :if (starts_with(dev_name, "Intel RealSense D45"))
It will catch both.
And please verify with both D455 & D457
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested
Please add the obj filr you created before convert to h file |
Why is this PR draft? was it tested? ready for review? |
Added |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great
Tracked on [LRS-685]