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

Commit 03e504dd authored by Louis Huemiller's avatar Louis Huemiller Committed by Android (Google) Code Review
Browse files

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

parents b050ca9f 9a8244b8
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);
        }
    }