Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9a8244b8 authored by Louis Huemiller's avatar Louis Huemiller
Browse files

Hardware Composer Test Lib HBlen off by 1

Change-Id: If51727a041e20afa307e5d1735b77da5a54a712b
parent eb328d59
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
        }
    }