diff --git a/thermion_dart/lib/src/swift/swift_bindings.g.dart b/thermion_dart/lib/src/swift/swift_bindings.g.dart index b5a48e64..295f56f4 100644 --- a/thermion_dart/lib/src/swift/swift_bindings.g.dart +++ b/thermion_dart/lib/src/swift/swift_bindings.g.dart @@ -133,9 +133,9 @@ final _objc_msgSend_4sp4xj = objc.msgSendPointer typedef instancetype = ffi.Pointer; typedef Dartinstancetype = objc.ObjCObjectBase; late final _sel_init = objc.registerName("init"); -late final _sel_initWithWidth_height_isDepth_ = - objc.registerName("initWithWidth:height:isDepth:"); -final _objc_msgSend_1gtkwyl = objc.msgSendPointer +late final _sel_initWithWidth_height_isDepth_isStencil_ = + objc.registerName("initWithWidth:height:isDepth:isStencil:"); +final _objc_msgSend_1v8gk45 = objc.msgSendPointer .cast< ffi.NativeFunction< ffi.Pointer Function( @@ -143,10 +143,11 @@ final _objc_msgSend_1gtkwyl = objc.msgSendPointer ffi.Pointer, ffi.Int64, ffi.Int64, + ffi.Bool, ffi.Bool)>>() .asFunction< ffi.Pointer Function(ffi.Pointer, - ffi.Pointer, int, int, bool)>(); + ffi.Pointer, int, int, bool, bool)>(); late final _sel_destroyTexture = objc.registerName("destroyTexture"); final _objc_msgSend_1pl9qdv = objc.msgSendPointer .cast< @@ -362,11 +363,16 @@ class ThermionTextureSwift extends objc.NSObject { retain: false, release: true); } - /// initWithWidth:height:isDepth: - ThermionTextureSwift initWithWidth_height_isDepth_( - int width, int height, bool isDepth) { - final _ret = _objc_msgSend_1gtkwyl(this.ref.retainAndReturnPointer(), - _sel_initWithWidth_height_isDepth_, width, height, isDepth); + /// initWithWidth:height:isDepth:isStencil: + ThermionTextureSwift initWithWidth_height_isDepth_isStencil_( + int width, int height, bool isDepth, bool isStencil) { + final _ret = _objc_msgSend_1v8gk45( + this.ref.retainAndReturnPointer(), + _sel_initWithWidth_height_isDepth_isStencil_, + width, + height, + isDepth, + isStencil); return ThermionTextureSwift.castFromPointer(_ret, retain: false, release: true); } diff --git a/thermion_dart/test/generated/libThermionTextureSwift.dylib b/thermion_dart/test/generated/libThermionTextureSwift.dylib deleted file mode 100644 index 424fea84..00000000 Binary files a/thermion_dart/test/generated/libThermionTextureSwift.dylib and /dev/null differ