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

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

  public static native long createContext();

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

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