odin-blend2d

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

bindgen.sjson (410B)


      1 inputs = [ "joltc.h" ]
      2 output_folder = "jolt"
      3 remove_type_prefix = "JPH_"
      4 remove_macro_prefix = "JPH_"
      5 remove_function_prefix = "JPH_"
      6 imports_file = "imports.inc"
      7 package_name = "jolt"
      8 type_overrides = {
      9     "JPH_Vec3" = "[3]f32"
     10     "JPH_Vec4" = "[4]f32"
     11     "JPH_Quat" = "quaternion128"
     12     "JPH_Mat4" = "matrix[4,4]f32"
     13 }
     14 
     15 remove_enum_members = [
     16     "_JPH_*"
     17 ]
     18 
     19 remove = [
     20     "JOLT_C_H_"
     21     "JPH_CAPI"
     22 ]