odin-blend2d

Odin bindings to Blend2D
Log | Files | Refs | README | LICENSE

bindgen.sjson (380B)


      1 inputs = [
      2 	".headers"
      3 ]
      4 
      5 remove = [
      6 	// The version macro doesn't translate.
      7 	"BL_VERSION"
      8 ]
      9 
     10 type_overrides = {
     11 	// BLRuntimeContext contains cpp fields that don't translate.
     12 	"BLRuntimeContext" = "struct{}"
     13 }
     14 
     15 remove_type_prefix = "BL"
     16 remove_function_prefix = "bl_"
     17 remove_macro_prefix = "BL_"
     18 
     19 output_folder = "binding"
     20 package_name = "blend2d"
     21 
     22 imports_file = "imports.inc"