Always reset layer acquireFenceFd after commit

If SurfaceFlinger needs to refresh the screen but the dirty region is
empty, it won't set the layer acquire fences, and stale file
descriptors will be passed to HWC commit(). Now we make sure to clear
the stale file descriptors for each layer right after commit().

Bug: 7078301
Change-Id: I6953ff91fc5488f105b30b07306f9c45a4c3f780
This commit is contained in:
Jesse Hall 2012-09-05 13:03:10 -07:00
parent 63f165fd6b
commit e25d005d91

View File

@ -598,6 +598,8 @@ public:
visibleRegion.numRects = 0;
visibleRegion.rects = NULL;
}
getLayer()->acquireFenceFd = -1;
}
};