summaryrefslogtreecommitdiff
path: root/platform/android/src/style/sources/source.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/src/style/sources/source.cpp')
-rw-r--r--platform/android/src/style/sources/source.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/platform/android/src/style/sources/source.cpp b/platform/android/src/style/sources/source.cpp
index be4c0367fc..e9f0f4e4b8 100644
--- a/platform/android/src/style/sources/source.cpp
+++ b/platform/android/src/style/sources/source.cpp
@@ -142,6 +142,14 @@ namespace android {
rendererFrontend = nullptr;
}
+ void Source::setDetached(jni::JNIEnv&) {
+ detached = true;
+ }
+
+ jboolean Source::isDetached(jni::JNIEnv&) {
+ return detached ? jni::jni_true : jni::jni_false;
+ }
+
void Source::registerNative(jni::JNIEnv& env) {
// Lookup the class
static auto& javaClass = jni::Class<Source>::Singleton(env);
@@ -151,7 +159,9 @@ namespace android {
// Register the peer
jni::RegisterNativePeer<Source>(env, javaClass, "nativePtr",
METHOD(&Source::getId, "nativeGetId"),
- METHOD(&Source::getAttribution, "nativeGetAttribution")
+ METHOD(&Source::getAttribution, "nativeGetAttribution"),
+ METHOD(&Source::setDetached, "nativeSetDetached"),
+ METHOD(&Source::isDetached, "nativeIsDetached")
);
// Register subclasses