summaryrefslogtreecommitdiff
path: root/platform/android/src/bitmap_factory.hpp
blob: 6e019d017c78dd344d295b4a29a2e7f542f6f045 (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::Object<Bitmap>
    DecodeByteArray(jni::JNIEnv&, jni::Array<jni::jbyte> data, jni::jint offset, jni::jint length);
};

} // namespace android
} // namespace mbgl