Hardware Composer Test Lib HBlen off by 1

Change-Id: If51727a041e20afa307e5d1735b77da5a54a712b
This commit is contained in:
Louis Huemiller 2011-01-09 19:02:05 -08:00
parent eb328d5989
commit 9a8244b8f8

View File

@ -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);
}
}