commit | 36f07d854de88949d632f77bffab322ffa826bcc | [log] [tgz] |
---|---|---|
author | Stephen Hines <[email protected]> | Mon Dec 03 15:05:49 2012 -0800 |
committer | Stephen Hines <[email protected]> | Mon Dec 03 15:05:49 2012 -0800 |
tree | 89b7af6b53936b9a9369fd0c4279ca51d3db5e66 | |
parent | c4b6b3af8ea67c6ce86a4e44e9432f2887107cff [diff] |
Fix kernel bounds for ColorMatrix intrinsic. Bug: 7648342 Change-Id: Ia345523ead21cbe74fabd07edd79b386de5b995d
diff --git a/driver/rsdIntrinsicColorMatrix.cpp b/driver/rsdIntrinsicColorMatrix.cpp index 8f6c70c..cfe0333 100644 --- a/driver/rsdIntrinsicColorMatrix.cpp +++ b/driver/rsdIntrinsicColorMatrix.cpp
@@ -97,9 +97,6 @@ uint32_t x1 = xstart; uint32_t x2 = xend; - in += xstart; - out += xstart; - if(x2 > x1) { #if defined(ARCH_ARM_HAVE_NEON) int32_t len = (x2 - x1) >> 2;