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

Side by Side Diff: cc/output/software_renderer.cc

Issue 15001027: [Aura] Added Support for rendering software compositor frames as cc::TextureLayers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/output/software_renderer.h" 5 #include "cc/output/software_renderer.h"
6 6
7 #include "base/debug/trace_event.h" 7 #include "base/debug/trace_event.h"
8 #include "cc/base/math_util.h" 8 #include "cc/base/math_util.h"
9 #include "cc/output/compositor_frame.h" 9 #include "cc/output/compositor_frame.h"
10 #include "cc/output/compositor_frame_ack.h" 10 #include "cc/output/compositor_frame_ack.h"
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 } 107 }
108 } 108 }
109 109
110 void SoftwareRenderer::SwapBuffers(const LatencyInfo& latency_info) { 110 void SoftwareRenderer::SwapBuffers(const LatencyInfo& latency_info) {
111 if (Settings().compositor_frame_message) 111 if (Settings().compositor_frame_message)
112 output_surface_->SendFrameToParentCompositor(&compositor_frame_); 112 output_surface_->SendFrameToParentCompositor(&compositor_frame_);
113 } 113 }
114 114
115 void SoftwareRenderer::ReceiveCompositorFrameAck( 115 void SoftwareRenderer::ReceiveCompositorFrameAck(
116 const CompositorFrameAck& ack) { 116 const CompositorFrameAck& ack) {
117 output_device_->ReclaimDIB(ack.last_dib_id); 117 output_device_->ReclaimSoftwareFrame(ack.last_software_frame_id);
118 } 118 }
119 119
120 bool SoftwareRenderer::FlippedFramebuffer() const { 120 bool SoftwareRenderer::FlippedFramebuffer() const {
121 return false; 121 return false;
122 } 122 }
123 123
124 void SoftwareRenderer::EnsureScissorTestEnabled() { 124 void SoftwareRenderer::EnsureScissorTestEnabled() {
125 is_scissor_enabled_ = true; 125 is_scissor_enabled_ = true;
126 SetClipRect(scissor_rect_); 126 SetClipRect(scissor_rect_);
127 } 127 }
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
457 4 * rect.width()); 457 4 * rect.width());
458 } 458 }
459 459
460 void SoftwareRenderer::SetVisible(bool visible) { 460 void SoftwareRenderer::SetVisible(bool visible) {
461 if (visible_ == visible) 461 if (visible_ == visible)
462 return; 462 return;
463 visible_ = visible; 463 visible_ = visible;
464 } 464 }
465 465
466 } // namespace cc 466 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698