HomeSort by relevance Sort by last modified time
    Searched refs:nativeApplyFilter (Results 1 - 25 of 33) sorted by null

1 2

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterContrast.java 44 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float strength);
54 nativeApplyFilter(bitmap, w, h, value);
ImageFilterEdge.java 39 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float p);
50 nativeApplyFilter(bitmap, w, h, p);
ImageFilterExposure.java 43 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float bright);
53 nativeApplyFilter(bitmap, w, h, value);
ImageFilterNegative.java 26 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h);
37 nativeApplyFilter(bitmap, w, h);
ImageFilterSaturated.java 44 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float saturation);
55 nativeApplyFilter(bitmap, w, h, value);
ImageFilterShadows.java 44 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float factor);
55 nativeApplyFilter(bitmap, w, h, p);
ImageFilterVibrance.java 43 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float bright);
53 nativeApplyFilter(bitmap, w, h, value);
ImageFilterBwFilter.java 43 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, int r, int g, int b);
59 nativeApplyFilter(bitmap, w, h, r, g, b);
ImageFilterHighlights.java 47 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float[] luminanceMap);
70 nativeApplyFilter(bitmap, w, h, luminanceMap);
ImageFilterHue.java 46 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float []matrix);
59 nativeApplyFilter(bitmap, w, h, cmatrix.getMatrix());
ImageFilterRedEye.java 50 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, short[] matrix);
74 nativeApplyFilter(bitmap, w, h, rect);
ImageFilterWBalance.java 49 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, int locX, int locY);
55 nativeApplyFilter(bitmap, w, h, -1, -1);
ImageFilterFx.java 49 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h,Bitmap fxBitmap, int fxw, int fxh);
83 nativeApplyFilter(bitmap, w, h, mFxBitmap, fxw, fxh);
ImageFilterKMeans.java 51 native protected void nativeApplyFilter(Bitmap bitmap, int width, int height,
90 nativeApplyFilter(bitmap, w, h, large_bm_ds, lw, lh, small_bm_ds, sw, sh, p, mSeed);
ImageFilterVignette.java 41 native protected void nativeApplyFilter(
95 nativeApplyFilter(bitmap, w, h, (int) cx, (int) cy, rx, ry, value);
  /packages/apps/Gallery2/jni/filters/
negative.c 19 void JNIFUNCF(ImageFilterNegative, nativeApplyFilter, jobject bitmap, jint width, jint height)
redeye.c 20 void JNIFUNCF(ImageFilterRedEye, nativeApplyFilter, jobject bitmap, jint width, jint height, jshortArray vrect)
exposure.c 19 void JNIFUNCF(ImageFilterExposure, nativeApplyFilter, jobject bitmap, jint width, jint height, jfloat bright)
highlight.c 20 void JNIFUNCF(ImageFilterHighlights, nativeApplyFilter, jobject bitmap,
contrast.c 39 void JNIFUNCF(ImageFilterContrast, nativeApplyFilter, jobject bitmap, jint width, jint height, jfloat bright)
shadows.c 20 void JNIFUNCF(ImageFilterShadows, nativeApplyFilter, jobject bitmap, jint width, jint height, float scale){
bwfilter.c 20 void JNIFUNCF(ImageFilterBwFilter, nativeApplyFilter, jobject bitmap, jint width, jint height, jint rw, jint gw, jint bw)
hue.c 19 void JNIFUNCF(ImageFilterHue, nativeApplyFilter, jobject bitmap, jint width, jint height, jfloatArray matrix)
kmeans.cc 33 void JNIFUNCF(ImageFilterKMeans, nativeApplyFilter, jobject bitmap, jint width, jint height,
saturated.c 19 void JNIFUNCF(ImageFilterSaturated, nativeApplyFilter, jobject bitmap, jint width, jint height, jfloat saturation)

Completed in 141 milliseconds

1 2