File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
maplibre/lib/src/platform/android Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff 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',
You can’t perform that action at this time.
0 commit comments