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

Commit b051671a authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "[HWUI] Use ANativeWindow_get{Height, Width}"

parents bffb1964 da819e47
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -564,8 +564,8 @@ SkISize CanvasContext::getNextFrameSize() const {
    ReliableSurface* surface = mNativeSurface.get();
    if (surface) {
        SkISize size;
        surface->query(NATIVE_WINDOW_WIDTH, &size.fWidth);
        surface->query(NATIVE_WINDOW_HEIGHT, &size.fHeight);
        size.fWidth = ANativeWindow_getWidth(surface);
        size.fHeight = ANativeWindow_getHeight(surface);
        return size;
    }
    return {INT32_MAX, INT32_MAX};
+2 −3
Original line number Diff line number Diff line
@@ -208,9 +208,8 @@ RENDERTHREAD_SKIA_PIPELINE_TEST(SkiaDisplayList, prepareListAndChildren_vdOffscr
    test::TestContext testContext;
    testContext.setRenderOffscreen(true);
    auto surface = testContext.surface();
    int width, height;
    surface->query(NATIVE_WINDOW_WIDTH, &width);
    surface->query(NATIVE_WINDOW_HEIGHT, &height);
    int width = ANativeWindow_getWidth(surface.get());
    int height = ANativeWindow_getHeight(surface.get());
    canvasContext->setSurface(std::move(surface));

    TreeInfo info(TreeInfo::MODE_FULL, *canvasContext.get());