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

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

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