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

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

Issue 57883007: Adding support for VSyncProvider to the software drawing path (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update Compositor constructor call Created 7 years, 1 month 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_output_device.h" 5 #include "cc/output/software_output_device.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "cc/output/software_frame_data.h" 8 #include "cc/output/software_frame_data.h"
9 #include "third_party/skia/include/core/SkBitmapDevice.h" 9 #include "third_party/skia/include/core/SkBitmapDevice.h"
10 #include "third_party/skia/include/core/SkCanvas.h" 10 #include "third_party/skia/include/core/SkCanvas.h"
11 #include "ui/gfx/skia_util.h" 11 #include "ui/gfx/skia_util.h"
12 #include "ui/gl/vsync_provider.h"
12 13
13 namespace cc { 14 namespace cc {
14 15
15 SoftwareOutputDevice::SoftwareOutputDevice() {} 16 SoftwareOutputDevice::SoftwareOutputDevice() {}
16 17
17 SoftwareOutputDevice::~SoftwareOutputDevice() {} 18 SoftwareOutputDevice::~SoftwareOutputDevice() {}
18 19
19 void SoftwareOutputDevice::Resize(gfx::Size viewport_size) { 20 void SoftwareOutputDevice::Resize(gfx::Size viewport_size) {
20 if (viewport_size_ == viewport_size) 21 if (viewport_size_ == viewport_size)
21 return; 22 return;
(...skipping 27 matching lines...) Expand all
49 50
50 void SoftwareOutputDevice::Scroll( 51 void SoftwareOutputDevice::Scroll(
51 gfx::Vector2d delta, gfx::Rect clip_rect) { 52 gfx::Vector2d delta, gfx::Rect clip_rect) {
52 NOTIMPLEMENTED(); 53 NOTIMPLEMENTED();
53 } 54 }
54 55
55 void SoftwareOutputDevice::ReclaimSoftwareFrame(unsigned id) { 56 void SoftwareOutputDevice::ReclaimSoftwareFrame(unsigned id) {
56 NOTIMPLEMENTED(); 57 NOTIMPLEMENTED();
57 } 58 }
58 59
60 gfx::VSyncProvider* SoftwareOutputDevice::GetVSyncProvider() {
61 return vsync_provider_.get();
62 }
63
59 } // namespace cc 64 } // namespace cc
OLDNEW
« no previous file with comments | « cc/output/software_output_device.h ('k') | content/browser/aura/browser_compositor_output_surface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698