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

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

    public native static long createContext();

    public native static void setColor(float red, float green, float blue, float alpha);

    public static long InitializeFunction;
    public static long RenderFunction;
    public static long DeinitializeFunction;
}