-
-
Notifications
You must be signed in to change notification settings - Fork 222
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
C Bindings #1444
base: master
Are you sure you want to change the base?
C Bindings #1444
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1444 +/- ##
=======================================
Coverage 96.58% 96.58%
=======================================
Files 103 103
Lines 7701 7707 +6
=======================================
+ Hits 7438 7444 +6
Misses 263 263 ☔ View full report in Codecov by Sentry. |
FYI @Meakk |
You are modifying libf3d public API! |
A few warnings and errors to fix in CI:
But it looks good so far! |
library/testing/test_image_c_api.c
Outdated
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.
is this file compiled ?
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.
It does not seem so, it needs to be added in library/testing/CMakeLists.txt
library/testing/test_image_c_api.c
Outdated
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.
It does not seem so, it needs to be added in library/testing/CMakeLists.txt
library/src/image_c_api.c
Outdated
f3d::image img; | ||
}; | ||
|
||
f3d_image_t* f3d_image_new(void) { |
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 file (which includes and uses image.h
) must be a C++ file. Only image_c_api.h
have to be C only (and the unit test of course).
hey @parkerstafford , need any help moving forward ? |
Review for Kam