diff options
author | Mathias Agopian <mathias@google.com> | 2010-08-10 20:42:20 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2010-08-11 16:05:06 -0700 |
commit | bc7e31a84b936a5a9ac295db56f0836c50c1ac7f (patch) | |
tree | 69b09d4aab5a24e6fe9f73be601ff25f5c099499 /services/surfaceflinger | |
parent | f6679fc6f70939643901f29a9a69e40c603e6e5f (diff) | |
download | frameworks_native-bc7e31a84b936a5a9ac295db56f0836c50c1ac7f.zip frameworks_native-bc7e31a84b936a5a9ac295db56f0836c50c1ac7f.tar.gz frameworks_native-bc7e31a84b936a5a9ac295db56f0836c50c1ac7f.tar.bz2 |
don't handle the transparent region of a layer in draw()
this is already taken into consideration in computeVisibleRegion
and therefore not needed at draw time.
Change-Id: I3fc7336d22f1147dfcd3a20fd71bf79b946d971f
Diffstat (limited to 'services/surfaceflinger')
-rw-r--r-- | services/surfaceflinger/LayerBase.cpp | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/services/surfaceflinger/LayerBase.cpp b/services/surfaceflinger/LayerBase.cpp index 75a9db5..91ac915 100644 --- a/services/surfaceflinger/LayerBase.cpp +++ b/services/surfaceflinger/LayerBase.cpp @@ -307,22 +307,8 @@ void LayerBase::drawRegion(const Region& reg) const } } -void LayerBase::draw(const Region& inClip) const +void LayerBase::draw(const Region& clip) const { - // invalidate the region we'll update - Region clip(inClip); // copy-on-write, so no-op most of the time - - // Remove the transparent area from the clipping region - const State& s = drawingState(); - if (LIKELY(!s.transparentRegion.isEmpty())) { - clip.subtract(transparentRegionScreen); - if (clip.isEmpty()) { - // usually this won't happen because this should be taken care of - // by SurfaceFlinger::computeVisibleRegions() - return; - } - } - // reset GL state glEnable(GL_SCISSOR_TEST); |