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

Commit 9fb2277f authored by Romain Guy's avatar Romain Guy
Browse files

Add support for partial invalidates in WebView

Bug #3461349

This change also fixes two bugs that prevented partial invalidates
from working with other views. Both bugs were in our EGL implementation:
they were preventing the caller from comparing the current context/surface
with another context/surface. This was causing HardwareRenderer to always
redraw the entire screen.

Change-Id: I33e096b304d4a0b7e6c8f92930f71d2ece9bebf5
parent a7e4eecb
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -26,6 +26,7 @@ public:
    Functor() {}
    virtual ~Functor() {}
    virtual status_t operator ()() { return true; }
    virtual status_t operator ()(float* data, uint32_t len) { return true; }
};

}; // namespace android