We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ac8c986 + 6d4d0db commit c03ab87Copy full SHA for c03ab87
1 file changed
libs/hwui/renderthread/CanvasContext.cpp
@@ -229,10 +229,11 @@ void CanvasContext::draw() {
229
SkRect dirty;
230
mDamageAccumulator.finish(&dirty);
231
232
- if (dirty.isEmpty() && Properties::skipEmptyFrames) {
233
- mCurrentFrameInfo->addFlag(FrameInfoFlags::SkippedFrame);
234
- return;
235
- }
+ // TODO: Re-enable after figuring out cause of b/22592975
+// if (dirty.isEmpty() && Properties::skipEmptyFrames) {
+// mCurrentFrameInfo->addFlag(FrameInfoFlags::SkippedFrame);
+// return;
236
+// }
237
238
mCurrentFrameInfo->markIssueDrawCommandsStart();
239
0 commit comments