commit | 3497d235c4fd439290d3a04ae957a2b139ab5757 | [log] [tgz] |
---|---|---|
author | Adam Powell <adamp@google.com> | Sun Jan 09 21:38:05 2011 -0800 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Sun Jan 09 21:38:05 2011 -0800 |
tree | 48b4f370e91e7f7626dd341dd75ab07c6fb0039b | |
parent | 03e504dda4d45c78ce6ddc098a3ff1738b43131f [diff] | |
parent | ec463b20800d6ad1e5f4c7bca42ac62445562ae8 [diff] |
Merge "Fix bug 3324981 - Inconsistent/buggy FastScroll behavior" into honeycomb
diff --git a/opengl/tests/hwc/hwcTestLib.cpp b/opengl/tests/hwc/hwcTestLib.cpp index b790c51..a468a92 100644 --- a/opengl/tests/hwc/hwcTestLib.cpp +++ b/opengl/tests/hwc/hwcTestLib.cpp
@@ -719,7 +719,7 @@ pixel = testRand(); } - for (unsigned int y = 0; y <= height; y++) { + for (unsigned int y = 0; y < height; y++) { hwcTestSetPixel(gBuf, buf, x, y, pixel); } }