diff options
Diffstat (limited to 'libs/hwui/OpenGLRenderer.h')
-rw-r--r-- | libs/hwui/OpenGLRenderer.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libs/hwui/OpenGLRenderer.h b/libs/hwui/OpenGLRenderer.h index 3ba6202..b651904 100644 --- a/libs/hwui/OpenGLRenderer.h +++ b/libs/hwui/OpenGLRenderer.h @@ -72,7 +72,8 @@ public: virtual void interrupt(); virtual void resume(); - virtual status_t callDrawGLFunction(Functor *functor, Rect& dirty); + ANDROID_API status_t invokeFunctors(Rect& dirty); + virtual status_t callDrawGLFunction(Functor* functor, Rect& dirty); ANDROID_API int getSaveCount() const; virtual int save(int flags); @@ -602,8 +603,10 @@ private: // Various caches Caches& mCaches; - // List of rectagnles to clear after saveLayer() is invoked + // List of rectangles to clear after saveLayer() is invoked Vector<Rect*> mLayers; + // List of functors to invoke after a frame is drawn + Vector<Functor*> mFunctors; // Indentity matrix const mat4 mIdentity; |