diff options
| author | 2016-12-08 01:46:32 +0000 | |
|---|---|---|
| committer | 2016-12-08 01:46:32 +0000 | |
| commit | 99a164e613924f98ae042b57419df1122556eb5d (patch) | |
| tree | 59454cf0d4484ef15f12d2f3f9878876eaba741d | |
| parent | 7c9787125da21b7b13270328220acb8e405af435 (diff) | |
| parent | 1748719ea1b69cc7ad111d8c6149d692b9f056f8 (diff) | |
Merge "Delete unused clip parameter in clearWithOpenGL"
| -rw-r--r-- | services/surfaceflinger/Layer.cpp | 8 | ||||
| -rw-r--r-- | services/surfaceflinger/Layer.h | 4 | ||||
| -rw-r--r-- | services/surfaceflinger/SurfaceFlinger.cpp | 2 | ||||
| -rw-r--r-- | services/surfaceflinger/SurfaceFlinger_hwc1.cpp | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/services/surfaceflinger/Layer.cpp b/services/surfaceflinger/Layer.cpp index 3b88a6e1f8..a42dd54be0 100644 --- a/services/surfaceflinger/Layer.cpp +++ b/services/surfaceflinger/Layer.cpp @@ -906,7 +906,7 @@ void Layer::onDraw(const sp<const DisplayDevice>& hw, const Region& clip, // if not everything below us is covered, we plug the holes! Region holes(clip.subtract(under)); if (!holes.isEmpty()) { - clearWithOpenGL(hw, holes, 0, 0, 0, 1); + clearWithOpenGL(hw, 0, 0, 0, 1); } return; } @@ -978,7 +978,7 @@ void Layer::onDraw(const sp<const DisplayDevice>& hw, const Region& clip, void Layer::clearWithOpenGL(const sp<const DisplayDevice>& hw, - const Region& /* clip */, float red, float green, float blue, + float red, float green, float blue, float alpha) const { RenderEngine& engine(mFlinger->getRenderEngine()); @@ -988,8 +988,8 @@ void Layer::clearWithOpenGL(const sp<const DisplayDevice>& hw, } void Layer::clearWithOpenGL( - const sp<const DisplayDevice>& hw, const Region& clip) const { - clearWithOpenGL(hw, clip, 0,0,0,0); + const sp<const DisplayDevice>& hw) const { + clearWithOpenGL(hw, 0,0,0,0); } void Layer::drawWithOpenGL(const sp<const DisplayDevice>& hw, diff --git a/services/surfaceflinger/Layer.h b/services/surfaceflinger/Layer.h index b4d86857b9..a051292f48 100644 --- a/services/surfaceflinger/Layer.h +++ b/services/surfaceflinger/Layer.h @@ -383,7 +383,7 @@ public: #endif // ----------------------------------------------------------------------- - void clearWithOpenGL(const sp<const DisplayDevice>& hw, const Region& clip) const; + void clearWithOpenGL(const sp<const DisplayDevice>& hw) const; void setFiltering(bool filtering); bool getFiltering() const; @@ -459,7 +459,7 @@ private: static bool getOpacityForFormat(uint32_t format); // drawing - void clearWithOpenGL(const sp<const DisplayDevice>& hw, const Region& clip, + void clearWithOpenGL(const sp<const DisplayDevice>& hw, float r, float g, float b, float alpha) const; void drawWithOpenGL(const sp<const DisplayDevice>& hw, const Region& clip, bool useIdentityTransform) const; diff --git a/services/surfaceflinger/SurfaceFlinger.cpp b/services/surfaceflinger/SurfaceFlinger.cpp index 73074cb7b1..af6b3d091b 100644 --- a/services/surfaceflinger/SurfaceFlinger.cpp +++ b/services/surfaceflinger/SurfaceFlinger.cpp @@ -2224,7 +2224,7 @@ bool SurfaceFlinger::doComposeSurfaces( && hasClientComposition) { // never clear the very first layer since we're // guaranteed the FB is already cleared - layer->clearWithOpenGL(displayDevice, clip); + layer->clearWithOpenGL(displayDevice); } break; } diff --git a/services/surfaceflinger/SurfaceFlinger_hwc1.cpp b/services/surfaceflinger/SurfaceFlinger_hwc1.cpp index 66a3c42753..ae2ef1cd66 100644 --- a/services/surfaceflinger/SurfaceFlinger_hwc1.cpp +++ b/services/surfaceflinger/SurfaceFlinger_hwc1.cpp @@ -2143,7 +2143,7 @@ bool SurfaceFlinger::doComposeSurfaces(const sp<const DisplayDevice>& hw, const && hasGlesComposition) { // never clear the very first layer since we're // guaranteed the FB is already cleared - layer->clearWithOpenGL(hw, clip); + layer->clearWithOpenGL(hw); } break; } |