commit | 081ce9fec3ffffc882941248b5b9592a0311f88a | [log] [tgz] |
---|---|---|
author | Louis Huemiller <lhuemill@google.com> | Sun Jan 09 19:02:05 2011 -0800 |
committer | Louis Huemiller <lhuemill@google.com> | Sun Jan 09 19:02:05 2011 -0800 |
tree | 1d05b3704ece45c6baa3c4a9f46fb0eb11cc3a58 | |
parent | edca0e4d134610fe81f731d22f6bf1cfae767ee4 [diff] [blame] |
Hardware Composer Test Lib HBlen off by 1 Change-Id: If51727a041e20afa307e5d1735b77da5a54a712b
diff --git a/opengl/tests/hwc/hwcTestLib.cpp b/opengl/tests/hwc/hwcTestLib.cpp index b790c513..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); } }