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

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;
}