diff options
| author | 2011-01-09 20:17:30 -0800 | |
|---|---|---|
| committer | 2011-01-09 20:17:30 -0800 | |
| commit | 03e504dda4d45c78ce6ddc098a3ff1738b43131f (patch) | |
| tree | 48b4f370e91e7f7626dd341dd75ab07c6fb0039b | |
| parent | b050ca9f215cda8c7f482cb824c09301019d993e (diff) | |
| parent | 9a8244b8f8d7f1acf9e475123959301666e03406 (diff) | |
Merge "Hardware Composer Test Lib HBlen off by 1" into honeycomb
| -rw-r--r-- | opengl/tests/hwc/hwcTestLib.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/tests/hwc/hwcTestLib.cpp b/opengl/tests/hwc/hwcTestLib.cpp index b790c513d0..a468a9219a 100644 --- a/opengl/tests/hwc/hwcTestLib.cpp +++ b/opengl/tests/hwc/hwcTestLib.cpp @@ -719,7 +719,7 @@ void hwcTestFillColorHBlend(GraphicBuffer *gBuf, uint32_t colorFormat, pixel = testRand(); } - for (unsigned int y = 0; y <= height; y++) { + for (unsigned int y = 0; y < height; y++) { hwcTestSetPixel(gBuf, buf, x, y, pixel); } } |