summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKTestApp/src/main/java/com/mapbox/mapboxsdk/testapp/model/other/CustomLayer.java
blob: cecaac05b3704814274aba656032ab7ee9229813 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.mapbox.mapboxsdk.testapp.model.other;

public class CustomLayer {
    static {
        System.loadLibrary("example-custom-layer");
    }

    public native static long createContext();
    public static long InitializeFunction;
    public static long RenderFunction;
    public static long DeinitializeFunction;
}