Home | History | Annotate | Download | only in sampleplugin

Lines Matching refs:npp

40     private final int npp;
45 public PaintSurface(Context context, int NPP, int width, int height) {
48 this.npp = NPP;
56 nativeSurfaceChanged(npp, format, width, height);
64 nativeSurfaceCreated(npp);
72 nativeSurfaceDestroyed(npp);
92 private native void nativeSurfaceCreated(int npp);
93 private native void nativeSurfaceChanged(int npp, int format, int width, int height);
94 private native void nativeSurfaceDestroyed(int npp);