-
Notifications
You must be signed in to change notification settings - Fork 53
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
Pimpl'ize ogre2 classes #137
Conversation
Signed-off-by: Ian Chen <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #137 +/- ##
==========================================
+ Coverage 52.03% 52.04% +0.01%
==========================================
Files 143 143
Lines 13095 13100 +5
==========================================
+ Hits 6814 6818 +4
- Misses 6281 6282 +1
Continue to review full report at Codecov.
|
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.
LGTM, I just have some smaller comments that I'll leave up to you.
/// brief Pointer to the Gaussian noise ogre material | ||
private: Ogre::Material *gaussianNoiseMat = nullptr; | ||
/// \brief Pointer to private data class | ||
private: std::unique_ptr<Ogre2GaussianNoisePassPrivate> dataPtr; |
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.
I didn't see a warning, but there's no include memory.
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.
added. d2b2979
Signed-off-by: Ian Chen <[email protected]>
Updated several ogre2 classes to use pimpl. Most of the private classes are currently empty.
Signed-off-by: Ian Chen [email protected]