Merge "Hardware Composer Test Lib HBlen off by 1" into honeycomb

This commit is contained in:
Louis Huemiller
2011-01-09 20:17:30 -08:00
committed by Android (Google) Code Review

View File

@@ -719,7 +719,7 @@ void hwcTestFillColorHBlend(GraphicBuffer *gBuf, uint32_t colorFormat,
pixel = testRand(); pixel = testRand();
} }
for (unsigned int y = 0; y <= height; y++) { for (unsigned int y = 0; y < height; y++) {
hwcTestSetPixel(gBuf, buf, x, y, pixel); hwcTestSetPixel(gBuf, buf, x, y, pixel);
} }
} }