* commit '0c9ec1f2b79835360b82b8cc91801a46c4352440': Disable skipping frames on empty damage
This commit is contained in:
@ -229,10 +229,11 @@ void CanvasContext::draw() {
|
|||||||
SkRect dirty;
|
SkRect dirty;
|
||||||
mDamageAccumulator.finish(&dirty);
|
mDamageAccumulator.finish(&dirty);
|
||||||
|
|
||||||
if (dirty.isEmpty() && Properties::skipEmptyFrames) {
|
// TODO: Re-enable after figuring out cause of b/22592975
|
||||||
mCurrentFrameInfo->addFlag(FrameInfoFlags::SkippedFrame);
|
// if (dirty.isEmpty() && Properties::skipEmptyFrames) {
|
||||||
return;
|
// mCurrentFrameInfo->addFlag(FrameInfoFlags::SkippedFrame);
|
||||||
}
|
// return;
|
||||||
|
// }
|
||||||
|
|
||||||
mCurrentFrameInfo->markIssueDrawCommandsStart();
|
mCurrentFrameInfo->markIssueDrawCommandsStart();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user