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

Side by Side Diff: ui/ozone/platform/dri/dri_surface.cc

Issue 794603003: [Ozone] Fix build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « ui/ozone/platform/dri/dri_surface.h ('k') | ui/ozone/platform/dri/dri_surface_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "ui/ozone/platform/dri/dri_surface.h" 5 #include "ui/ozone/platform/dri/dri_surface.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
9 #include "third_party/skia/include/core/SkCanvas.h" 9 #include "third_party/skia/include/core/SkCanvas.h"
10 #include "third_party/skia/include/core/SkSurface.h" 10 #include "third_party/skia/include/core/SkSurface.h"
(...skipping 25 matching lines...) Expand all
36 DriSurface::DriSurface(DriWindowDelegate* window_delegate, DriWrapper* dri) 36 DriSurface::DriSurface(DriWindowDelegate* window_delegate, DriWrapper* dri)
37 : window_delegate_(window_delegate), 37 : window_delegate_(window_delegate),
38 dri_(dri), 38 dri_(dri),
39 buffers_(), 39 buffers_(),
40 front_buffer_(0) { 40 front_buffer_(0) {
41 } 41 }
42 42
43 DriSurface::~DriSurface() { 43 DriSurface::~DriSurface() {
44 } 44 }
45 45
46 skia::RefPtr<SkCanvas> DriSurface::GetCanvas() { 46 skia::RefPtr<SkSurface> DriSurface::GetSurface() {
47 return skia::SharePtr(surface_->getCanvas()); 47 return surface_;
48 } 48 }
49 49
50 void DriSurface::ResizeCanvas(const gfx::Size& viewport_size) { 50 void DriSurface::ResizeCanvas(const gfx::Size& viewport_size) {
51 SkImageInfo info = SkImageInfo::MakeN32( 51 SkImageInfo info = SkImageInfo::MakeN32(
52 viewport_size.width(), viewport_size.height(), kOpaque_SkAlphaType); 52 viewport_size.width(), viewport_size.height(), kOpaque_SkAlphaType);
53 surface_ = skia::AdoptRef(SkSurface::NewRaster(info)); 53 surface_ = skia::AdoptRef(SkSurface::NewRaster(info));
54 54
55 HardwareDisplayController* controller = window_delegate_->GetController(); 55 HardwareDisplayController* controller = window_delegate_->GetController();
56 if (!controller) 56 if (!controller)
57 return; 57 return;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 SkRect real_damage = RectToSkRect(UnionRects(damage, last_damage_)); 92 SkRect real_damage = RectToSkRect(UnionRects(damage, last_damage_));
93 93
94 // Copy damage region. 94 // Copy damage region.
95 skia::RefPtr<SkImage> image = skia::AdoptRef(surface_->newImageSnapshot()); 95 skia::RefPtr<SkImage> image = skia::AdoptRef(surface_->newImageSnapshot());
96 canvas->drawImageRect(image.get(), &real_damage, real_damage, NULL); 96 canvas->drawImageRect(image.get(), &real_damage, real_damage, NULL);
97 97
98 last_damage_ = damage; 98 last_damage_ = damage;
99 } 99 }
100 100
101 } // namespace ui 101 } // namespace ui
OLDNEW
« no previous file with comments | « ui/ozone/platform/dri/dri_surface.h ('k') | ui/ozone/platform/dri/dri_surface_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698