Home | History | Annotate | Download | only in trees

Lines Matching defs:LayerTreeHost

66 scoped_ptr<LayerTreeHost> LayerTreeHost::CreateThreaded(
72 scoped_ptr<LayerTreeHost> layer_tree_host(
73 new LayerTreeHost(client, manager, settings));
78 scoped_ptr<LayerTreeHost> LayerTreeHost::CreateSingleThreaded(
83 scoped_ptr<LayerTreeHost> layer_tree_host(
84 new LayerTreeHost(client, manager, settings));
89 LayerTreeHost::LayerTreeHost(LayerTreeHostClient* client,
126 void LayerTreeHost::InitializeThreaded(
131 void LayerTreeHost::InitializeSingleThreaded(
136 void LayerTreeHost::InitializeForTesting(scoped_ptr<Proxy> proxy_for_testing) {
140 void LayerTreeHost::InitializeProxy(scoped_ptr<Proxy> proxy) {
141 TRACE_EVENT0("cc", "LayerTreeHost::InitializeForReal");
147 LayerTreeHost::~LayerTreeHost() {
148 TRACE_EVENT0("cc", "LayerTreeHost::~LayerTreeHost");
171 void LayerTreeHost::SetLayerTreeHostClientReady() {
179 void LayerTreeHost::OnCreateAndInitializeOutputSurfaceAttempted(bool success) {
182 "LayerTreeHost::OnCreateAndInitializeOutputSurfaceAttempted",
213 void LayerTreeHost::DeleteContentsTexturesOnImplThread(
220 void LayerTreeHost::DidBeginMainFrame() {
224 void LayerTreeHost::UpdateClientAnimations(base::TimeTicks frame_begin_time) {
230 void LayerTreeHost::DidStopFlinging() {
234 void LayerTreeHost::Layout() {
238 void LayerTreeHost::BeginCommitOnImplThread(LayerTreeHostImpl* host_impl) {
240 TRACE_EVENT0("cc", "LayerTreeHost::CommitTo");
243 // This function commits the LayerTreeHost to an impl tree. When modifying
246 // should be delayed until the LayerTreeHost::CommitComplete, which will run
248 void LayerTreeHost::FinishCommitOnImplThread(LayerTreeHostImpl* host_impl) {
290 TRACE_EVENT0("cc", "LayerTreeHost::PushProperties");
364 void LayerTreeHost::WillCommit() {
368 void LayerTreeHost::UpdateHudLayer() {
381 void LayerTreeHost::CommitComplete() {
386 scoped_ptr<OutputSurface> LayerTreeHost::CreateOutputSurface() {
390 scoped_ptr<LayerTreeHostImpl> LayerTreeHost::CreateLayerTreeHostImpl(
411 void LayerTreeHost::DidLoseOutputSurface() {
412 TRACE_EVENT0("cc", "LayerTreeHost::DidLoseOutputSurface");
423 void LayerTreeHost::FinishAllRendering() {
427 void LayerTreeHost::SetDeferCommits(bool defer_commits) {
431 void LayerTreeHost::DidDeferCommit() {}
433 void LayerTreeHost::SetNeedsDisplayOnAllLayers() {
446 const RendererCapabilities& LayerTreeHost::GetRendererCapabilities() const {
450 void LayerTreeHost::SetNeedsAnimate() {
455 void LayerTreeHost::SetNeedsUpdateLayers() {
460 void LayerTreeHost::SetNeedsCommit() {
463 "LayerTreeHost::SetNeedsCommit::cancel prepaint",
471 void LayerTreeHost::SetNeedsFullTreeSync() {
476 void LayerTreeHost::SetNeedsRedraw() {
480 void LayerTreeHost::SetNeedsRedrawRect(const gfx::Rect& damage_rect) {
484 bool LayerTreeHost::CommitRequested() const {
488 bool LayerTreeHost::BeginMainFrameRequested() const {
493 void LayerTreeHost::SetNextCommitWaitsForActivation() {
497 void LayerTreeHost::SetNextCommitForcesRedraw() {
501 void LayerTreeHost::SetAnimationEvents(
535 void LayerTreeHost::SetRootLayer(scoped_refptr<Layer> root_layer) {
558 void LayerTreeHost::SetDebugState(const LayerTreeDebugState& debug_state) {
574 bool LayerTreeHost::UseGpuRasterization() const {
585 void LayerTreeHost::SetHasGpuRasterizationTrigger(bool has_trigger) {
591 "LayerTreeHost::SetHasGpuRasterizationTrigger",
597 void LayerTreeHost::SetViewportSize(const gfx::Size& device_viewport_size) {
606 void LayerTreeHost::SetOverdrawBottomHeight(float overdraw_bottom_height) {
614 void LayerTreeHost::ApplyPageScaleDeltaFromImplSide(float page_scale_delta) {
619 void LayerTreeHost::SetPageScaleFactorAndLimits(float page_scale_factor,
633 void LayerTreeHost::SetOverhangBitmap(const SkBitmap& bitmap) {
650 void LayerTreeHost::SetVisible(bool visible) {
659 void LayerTreeHost::StartPageScaleAnimation(const gfx::Vector2d& target_offset,
672 void LayerTreeHost::NotifyInputThrottledUntilCommit() {
676 void LayerTreeHost::Composite(base::TimeTicks frame_begin_time) {
688 bool LayerTreeHost::UpdateLayers(ResourceUpdateQueue* queue) {
719 void LayerTreeHost::RecordGpuRasterizationHistogram() {
744 void LayerTreeHost::CalculateLCDTextMetricsCallback(Layer* layer) {
756 bool LayerTreeHost::UsingSharedMemoryResources() {
760 bool LayerTreeHost::UpdateLayers(Layer* root_layer,
762 TRACE_EVENT1("cc", "LayerTreeHost::UpdateLayers",
779 TRACE_EVENT0("cc", "LayerTreeHost::UpdateLayers::CalcDrawProps");
804 base::Bind(&LayerTreeHost::CalculateLCDTextMetricsCallback,
832 TRACE_EVENT0("cc", "LayerTreeHost::UpdateLayers::posting prepaint task");
833 prepaint_callback_.Reset(base::Bind(&LayerTreeHost::TriggerPrepaint,
844 void LayerTreeHost::TriggerPrepaint() {
846 TRACE_EVENT0("cc", "LayerTreeHost::TriggerPrepaint");
854 void LayerTreeHost::ReduceMemoryUsage() {
863 void LayerTreeHost::SetPrioritiesForSurfaces(size_t surface_memory_bytes) {
876 void LayerTreeHost::SetPrioritiesForLayers(
895 void LayerTreeHost::PrioritizeTextures(
911 size_t LayerTreeHost::CalculateMemoryForRenderSurfaces(
941 void LayerTreeHost::PaintMasksForRenderSurface(Layer* render_surface_layer,
965 void LayerTreeHost::PaintLayerContents(
1013 void LayerTreeHost::ApplyScrollAndScale(const ScrollAndScaleSet& info) {
1062 void LayerTreeHost::StartRateLimiter() {
1070 &LayerTreeHost::RateLimit);
1074 void LayerTreeHost::StopRateLimiter() {
1078 void LayerTreeHost::RateLimit() {
1086 bool LayerTreeHost::AlwaysUsePartialTextureUpdates() {
1092 size_t LayerTreeHost::MaxPartialTextureUpdates() const {
1103 bool LayerTreeHost::RequestPartialTextureUpdate() {
1111 void LayerTreeHost::SetDeviceScaleFactor(float device_scale_factor) {
1119 void LayerTreeHost::UpdateTopControlsState(TopControlsState constraints,
1135 scoped_ptr<base::Value> LayerTreeHost::AsValue() const {
1141 void LayerTreeHost::AnimateLayers(base::TimeTicks monotonic_time) {
1146 TRACE_EVENT0("cc", "LayerTreeHost::AnimateLayers");
1159 UIResourceId LayerTreeHost::CreateUIResource(UIResourceClient* client) {
1181 void LayerTreeHost::DeleteUIResource(UIResourceId uid) {
1191 void LayerTreeHost::RecreateUIResources() {
1206 gfx::Size LayerTreeHost::GetUIResourceSize(UIResourceId uid) const {
1215 void LayerTreeHost::RegisterViewportLayers(
1224 int LayerTreeHost::ScheduleMicroBenchmark(
1232 bool LayerTreeHost::SendMessageToMicroBenchmark(int id,
1237 void LayerTreeHost::InsertSwapPromiseMonitor(SwapPromiseMonitor* monitor) {
1241 void LayerTreeHost::RemoveSwapPromiseMonitor(SwapPromiseMonitor* monitor) {
1245 void LayerTreeHost::NotifySwapPromiseMonitorsOfSetNeedsCommit() {
1251 void LayerTreeHost::QueueSwapPromise(scoped_ptr<SwapPromise> swap_promise) {
1258 void LayerTreeHost::BreakSwapPromises(SwapPromise::DidNotSwapReason reason) {