File tree 3 files changed +13
-12
lines changed
3 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ fn main() {
11
11
//println!("Bindings generated at {:?}", bindings_path);
12
12
let bindings = bindgen:: Builder :: default ( )
13
13
. clang_arg ( "-I../native/openfx/include" )
14
+ . blacklist_type ( "max_align_t" )
14
15
. header ( "build/wrapper.h" )
15
16
. generate ( )
16
17
. expect ( "Unable to generate bindings" ) ;
Original file line number Diff line number Diff line change 5
5
6
6
#include "ofxCore.h"
7
7
#include "ofxImageEffect.h"
8
+ #include "ofxOld.h"
9
+ #include "ofxMemory.h"
10
+ #include "ofxPixels.h"
11
+ #include "ofxParam.h"
12
+ #include "ofxProperty.h"
13
+ #include "ofxMessage.h"
8
14
#include "ofxDialog.h"
9
15
#include "ofxInteract.h"
16
+ #include "ofxProgress.h"
10
17
#include "ofxKeySyms.h"
11
- #include "ofxMemory.h"
12
- #include "ofxMessage.h"
13
18
#include "ofxMultiThread.h"
14
19
#include "ofxNatron.h"
15
- #include "ofxOld.h"
16
20
#include "ofxOpenGLRender.h"
17
21
#include "ofxParametricParam.h"
18
- #include "ofxParam.h"
19
- #include "ofxPixels.h"
20
- #include "ofxProgress.h"
21
- #include "ofxProperty.h"
22
22
#include "ofxSonyVegas.h"
23
23
#include "ofxTimeLine.h"
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
6
6
7
7
#[ cfg( test) ]
8
8
mod tests {
9
- #[ test]
10
- fn it_works ( ) {
11
- assert_eq ! ( 2 + 2 , 4 ) ;
12
- }
13
- }
9
+ #[ test]
10
+ fn it_works ( ) {
11
+ assert_eq ! ( 2 + 2 , 4 ) ;
12
+ }
14
13
14
+ }
You can’t perform that action at this time.
0 commit comments