summaryrefslogtreecommitdiffstats
path: root/jni
diff options
context:
space:
mode:
authorRuben Brunk <rubenbrunk@google.com>2012-12-10 19:40:27 -0800
committerRuben Brunk <rubenbrunk@google.com>2012-12-12 16:03:45 -0800
commitcd3348840467a32ae1fa1f2f1289a4bbf02bbb8e (patch)
treebdb5a9998183eca65f2923eda82d47057e761a98 /jni
parent2dda1f980adc33d6bf9057a1a486920d2a2379df (diff)
downloadandroid_packages_apps_Snap-cd3348840467a32ae1fa1f2f1289a4bbf02bbb8e.tar.gz
android_packages_apps_Snap-cd3348840467a32ae1fa1f2f1289a4bbf02bbb8e.tar.bz2
android_packages_apps_Snap-cd3348840467a32ae1fa1f2f1289a4bbf02bbb8e.zip
Added photonegative filter.
Change-Id: I73594573b26873cb3fda49aca6d40761dec3707f
Diffstat (limited to 'jni')
-rw-r--r--jni/Android.mk1
-rw-r--r--jni/filters/negative.c33
2 files changed, 34 insertions, 0 deletions
diff --git a/jni/Android.mk b/jni/Android.mk
index db31bfdf6..8a2fc9e18 100644
--- a/jni/Android.mk
+++ b/jni/Android.mk
@@ -35,6 +35,7 @@ LOCAL_SRC_FILES := filters/bw.c \
filters/hsv.c \
filters/vibrance.c \
filters/geometry.c \
+ filters/negative.c \
filters/vignette.c \
filters/redEyeMath.c \
filters/fx.c \
diff --git a/jni/filters/negative.c b/jni/filters/negative.c
new file mode 100644
index 000000000..735e583c9
--- /dev/null
+++ b/jni/filters/negative.c
@@ -0,0 +1,33 @@
+/*
+ * Copyright (C) 2012 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "filters.h"
+
+void JNIFUNCF(ImageFilterNegative, nativeApplyFilter, jobject bitmap, jint width, jint height)
+{
+ char* destination = 0;
+ AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
+
+ int tot_len = height * width * 4;
+ int i;
+ char * dst = destination;
+ for (i = 0; i < tot_len; i+=4) {
+ dst[RED] = 255 - dst[RED];
+ dst[GREEN] = 255 - dst[GREEN];
+ dst[BLUE] = 255 - dst[BLUE];
+ }
+ AndroidBitmap_unlockPixels(env, bitmap);
+}