summaryrefslogtreecommitdiff
path: root/cpu_ref/rsCpuIntrinsicBlur.cpp
diff options
context:
space:
mode:
authorJason Sams <jsams@google.com>2013-04-02 13:15:58 -0700
committerJason Sams <jsams@google.com>2013-04-02 13:15:58 -0700
commit0782188b07ceeca03a45b26873bec0ccfd412373 (patch)
tree8db5ba673b9d3feb3dc825ee386afe93830361cf /cpu_ref/rsCpuIntrinsicBlur.cpp
parent3aeab4f0a628cad27c3f18ec1cff6f154ae01b62 (diff)
downloadrs-0782188b07ceeca03a45b26873bec0ccfd412373.tar.gz
Fix corruption when neon is disabled.
Change-Id: I5b7b143f78bb87c9f26265c45d727ed1b3063a73
Diffstat (limited to 'cpu_ref/rsCpuIntrinsicBlur.cpp')
-rw-r--r--cpu_ref/rsCpuIntrinsicBlur.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu_ref/rsCpuIntrinsicBlur.cpp b/cpu_ref/rsCpuIntrinsicBlur.cpp
index d6f88986..068cc78e 100644
--- a/cpu_ref/rsCpuIntrinsicBlur.cpp
+++ b/cpu_ref/rsCpuIntrinsicBlur.cpp
@@ -180,7 +180,7 @@ static void OneVFU4(float4 *out,
out->xyzw = blurredPixel;
x1++;
out++;
- ptrIn++;
+ ptrIn+=4;
}
}