Hardware Composer Test Lib HBlen off by 1
Change-Id: If51727a041e20afa307e5d1735b77da5a54a712b
This commit is contained in:
parent
eb328d5989
commit
9a8244b8f8
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user