-
Notifications
You must be signed in to change notification settings - Fork 287
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
Introduce various improvements #1498
Conversation
…Apple M1 Pro with Apple clang version 16.0.0 compiler: [ 91%] Building CXX object modules/ar/CMakeFiles/visp_ar.dir/src/panda3d-simulator/vpPanda3DGeometryRenderer.cpp.o .../modules/ar/src/panda3d-simulator/vpPanda3DGeometryRenderer.cpp:184:33: warning: loop not vectorized: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] 184 | void vpPanda3DGeometryRenderer::getRender(vpImage<vpRGBf> &normals, vpImage<float> &depth, const vpRect &bb, unsigned int h, unsigned w) const | ^ 1 warning generated.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1498 +/- ##
==========================================
+ Coverage 53.88% 53.90% +0.01%
==========================================
Files 442 442
Lines 53778 53793 +15
==========================================
+ Hits 28978 28996 +18
+ Misses 24800 24797 -3 ☔ View full report in Codecov by Sentry. |
#endif | ||
for (int j = 0; j < image_width; ++j) { | ||
int left_j = left + j; | ||
int j_4 = j + 4; |
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 think this should be int j_4 = j * 4;
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 for sure. Thanks. Fixed in next commit
No description provided.