summaryrefslogtreecommitdiff
path: root/platform/android/src/bitmap_factory.hpp
blob: f73b7a29067226323d06caa37ab423736fa7d96b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include <jni/jni.hpp>

#include "bitmap.hpp"

namespace mbgl {
namespace android {

class BitmapFactory {
public:
    static constexpr auto Name() { return "android/graphics/BitmapFactory"; };
    static void registerNative(jni::JNIEnv&);

    static jni::Local<jni::Object<Bitmap>>
    DecodeByteArray(jni::JNIEnv&, jni::Array<jni::jbyte>& data, jni::jint offset, jni::jint length);
};

} // namespace android
} // namespace mbgl