Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1278)

Unified Diff: cc/scheduler_state_machine.cc

Issue 11830040: cc: Do not request redraw on commit when impl-side painting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@decouple_draw3
Patch Set: fix cc_unittests Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: cc/scheduler_state_machine.cc
diff --git a/cc/scheduler_state_machine.cc b/cc/scheduler_state_machine.cc
index f9d8cbc8f5b90b834ab8a1102f5de8b3b9384221..60a1ce9a3a1dffb0892ebf0fc45e3f64660f43bf 100644
--- a/cc/scheduler_state_machine.cc
+++ b/cc/scheduler_state_machine.cc
@@ -6,11 +6,13 @@
#include "base/logging.h"
#include "base/stringprintf.h"
+#include "cc/layer_tree_settings.h"
namespace cc {
-SchedulerStateMachine::SchedulerStateMachine()
- : m_commitState(COMMIT_STATE_IDLE)
+SchedulerStateMachine::SchedulerStateMachine(const LayerTreeSettings &layerTreeSettings)
nduca 2013/01/15 01:54:54 I'm not liking the machine having access to all th
brianderson 2013/01/15 02:01:56 Sounds good.
+ : m_layerTreeSettings(layerTreeSettings)
+ , m_commitState(COMMIT_STATE_IDLE)
, m_currentFrameNumber(0)
, m_lastFrameNumberWhereDrawWasCalled(-1)
, m_lastFrameNumberWhereTreeActivationAttempted(-1)
@@ -209,7 +211,8 @@ void SchedulerStateMachine::updateState(Action action)
m_commitState = COMMIT_STATE_WAITING_FOR_FIRST_FORCED_DRAW;
else
m_commitState = COMMIT_STATE_WAITING_FOR_FIRST_DRAW;
- m_needsRedraw = true;
+ if (!m_layerTreeSettings.implSidePainting)
+ m_needsRedraw = true;
if (m_drawIfPossibleFailed)
m_lastFrameNumberWhereDrawWasCalled = -1;

Powered by Google App Engine
This is Rietveld 408576698