-
-
Notifications
You must be signed in to change notification settings - Fork 261
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
Fix compatibility with VTK 9.3.20240914 #1620
Conversation
You are modifying libf3d public API! |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1620 +/- ##
=======================================
Coverage 96.82% 96.82%
=======================================
Files 108 108
Lines 7643 7654 +11
=======================================
+ Hits 7400 7411 +11
Misses 243 243 ☔ View full report in Codecov by Sentry. |
VTK recently introduced support for dynamic loading of graphical libraries, breaking retro-compatibility in the process. This fix compatibility with VTK while also supporting implicitely EGL/OSMESA rendering with recent versions of VTK.
865c5e7
to
cdd0047
Compare
@@ -981,15 +986,17 @@ if(NOT F3D_MACOS_BUNDLE) | |||
endif() | |||
endif() | |||
|
|||
# TODO VTK_VERSION |
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.
remove
I'm taking over with #1631, let's close this one. |
VTK recently introduced support for dynamic loading of graphical libraries, breaking retro-compatibility in the process.
This fix compatibility with VTK while also supporting implicitely EGL/OSMESA rendering with recent versions of VTK.
DISPLAY= ./bin/f3d
just works now.Also updates VTK version in CI
Related to: #1445 #1621