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

1 2

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterContrast.java 45 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float strength);
55 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 45 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, int r, int g, int b);
61 nativeApplyFilter(bitmap, w, h, r, g, b);
ImageFilterHighlights.java 48 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float[] luminanceMap);
71 nativeApplyFilter(bitmap, w, h, luminanceMap);
ImageFilterHue.java 47 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float []matrix);
60 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 50 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, int locX, int locY);
56 nativeApplyFilter(bitmap, w, h, -1, -1);
ImageFilterFx.java 54 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h,
100 nativeApplyFilter(bitmap, w, h, mFxBitmap, fxw, fxh, start, end);
ImageFilterKMeans.java 52 native protected void nativeApplyFilter(Bitmap bitmap, int width, int height,
91 nativeApplyFilter(bitmap, w, h, large_bm_ds, lw, lh, small_bm_ds, sw, sh, p, mSeed);
ImageFilterTinyPlanet.java 70 native protected void nativeApplyFilter(
104 nativeApplyFilter(bitmapIn, bitmapIn.getWidth(), bitmapIn.getHeight(), mBitmapOut,
  /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 183 milliseconds

1 2