Merge "Hardware Composer Test Lib HBlen off by 1" into honeycomb
This commit is contained in:
committed by
Android (Google) Code Review
commit
6b22a99481
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user