OSDN Git Service

Fix RenderScript warnings.
authorJean-Luc Brouillet <jeanluc@google.com>
Tue, 26 May 2015 18:08:02 +0000 (11:08 -0700)
committerJean-Luc Brouillet <jeanluc@google.com>
Tue, 26 May 2015 22:16:09 +0000 (22:16 +0000)
b/21443340

Change-Id: I9d31979a1e4e51d321a5fbddd29eda3b699b486d

src/com/android/gallery3d/filtershow/filters/saturation.rs
src/com/android/gallery3d/filtershow/filters/vignette.rs

index 5210e34..5b21640 100644 (file)
@@ -149,7 +149,6 @@ uchar4 __attribute__((kernel)) selectiveAdjust(const uchar4 in, uint32_t x,
     uint32_t y) {
     float4 pixel = rsUnpackColor8888(in);
 
-    float4 wsum = pixel;
     int hue = rgb2hue(in);
 
     float t = satLut[hue];
@@ -158,4 +157,4 @@ uchar4 __attribute__((kernel)) selectiveAdjust(const uchar4 in, uint32_t x,
 
     pixel.a = 1.0f;
     return rsPackColorTo8888(clamp(pixel, 0.f, 1.0f));
-}
\ No newline at end of file
+}
index 709b220..7ab4663 100644 (file)
@@ -38,8 +38,6 @@ static const float Bf = 0.114f;
 
 
 void setupVignetteParams() {
-    int k = 0;
-
     scalex = 1.f / radiusx;
     scaley = 1.f / radiusy;
 
@@ -75,4 +73,4 @@ uchar4 __attribute__((kernel)) vignette(const uchar4 in, uint32_t x,  uint32_t y
     wsum.a = 1.0f;
     uchar4 out = rsPackColorTo8888(clamp(wsum, 0.f, 1.0f));
     return out;
-}
\ No newline at end of file
+}