Skip to content

Commit f8d9fa9

Browse files
committed
run jnigen
1 parent b111b1c commit f8d9fa9

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

maplibre/lib/src/platform/android/jni.g.dart

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64704,6 +64704,41 @@ class MapLibreMap extends jni$_.JObject {
6470464704
).check();
6470564705
}
6470664706

64707+
static final _id_setFrustumOffset = _class.instanceMethodId(
64708+
r'setFrustumOffset',
64709+
r'(Landroid/graphics/RectF;)V',
64710+
);
64711+
64712+
static final _setFrustumOffset =
64713+
jni$_.ProtectedJniExtensions.lookup<
64714+
jni$_.NativeFunction<
64715+
jni$_.JThrowablePtr Function(
64716+
jni$_.Pointer<jni$_.Void>,
64717+
jni$_.JMethodIDPtr,
64718+
jni$_.VarArgs<(jni$_.Pointer<jni$_.Void>,)>,
64719+
)
64720+
>
64721+
>('globalEnv_CallVoidMethod')
64722+
.asFunction<
64723+
jni$_.JThrowablePtr Function(
64724+
jni$_.Pointer<jni$_.Void>,
64725+
jni$_.JMethodIDPtr,
64726+
jni$_.Pointer<jni$_.Void>,
64727+
)
64728+
>();
64729+
64730+
/// from: `public void setFrustumOffset(android.graphics.RectF rectF)`
64731+
void setFrustumOffset(
64732+
RectF rectF,
64733+
) {
64734+
final _$rectF = rectF.reference;
64735+
_setFrustumOffset(
64736+
reference.pointer,
64737+
_id_setFrustumOffset as jni$_.JMethodIDPtr,
64738+
_$rectF.pointer,
64739+
).check();
64740+
}
64741+
6470764742
static final _id_setSwapBehaviorFlush = _class.instanceMethodId(
6470864743
r'setSwapBehaviorFlush',
6470964744
r'(Z)V',

0 commit comments

Comments
 (0)