-
Notifications
You must be signed in to change notification settings - Fork 0
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
Upgrade vr-imgui #64
Upgrade vr-imgui #64
Conversation
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.
There seems to be a lot more going on here than just updating a version? Is this all for compatibility reasons?
if (x < min) | ||
{ | ||
return min; | ||
} | ||
if (x > max) | ||
{ | ||
return max; | ||
} | ||
return x; |
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.
Are you adding any extra functionality here? It's a little hard to tell in GitHub, just want to make sure you're not merging any changes you don't mean to
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.
Yes. Kind of new functionality. Updating imgui also implies upgrading the code in the transfer function widgets.
@RobertGemmaJr Sorry to be so late on this PR. Could you give it a new review? |
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.
Looks like the only changes since last time were or CMake. Looks great!
This PR includes linking against the new vr-imgui that supports the latest imgui and the upgrading in transfer function widget.
Closes #49 and #48