OLD | NEW |
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 <errno.h> | 7 #include <errno.h> |
8 #include <sys/mman.h> | 8 #include <sys/mman.h> |
9 #include <sys/types.h> | 9 #include <sys/types.h> |
10 #include <xf86drm.h> | 10 #include <xf86drm.h> |
(...skipping 13 matching lines...) Expand all Loading... |
24 bitmaps_(), | 24 bitmaps_(), |
25 front_buffer_(0), | 25 front_buffer_(0), |
26 size_(size) { | 26 size_(size) { |
27 } | 27 } |
28 | 28 |
29 DriSurface::~DriSurface() { | 29 DriSurface::~DriSurface() { |
30 } | 30 } |
31 | 31 |
32 bool DriSurface::Initialize() { | 32 bool DriSurface::Initialize() { |
33 for (size_t i = 0; i < arraysize(bitmaps_); ++i) { | 33 for (size_t i = 0; i < arraysize(bitmaps_); ++i) { |
34 bitmaps_[i].reset(CreateBuffer()); | 34 bitmaps_[i].reset(new DriBuffer(dri_)); |
35 // TODO(dnicoara) Should select the configuration based on what the | 35 // TODO(dnicoara) Should select the configuration based on what the |
36 // underlying system supports. | 36 // underlying system supports. |
37 SkImageInfo info = SkImageInfo::MakeN32Premul(size_.width(), | 37 SkImageInfo info = SkImageInfo::MakeN32Premul(size_.width(), |
38 size_.height()); | 38 size_.height()); |
39 if (!bitmaps_[i]->Initialize(info)) { | 39 if (!bitmaps_[i]->Initialize(info)) { |
40 return false; | 40 return false; |
41 } | 41 } |
42 } | 42 } |
43 | 43 |
44 return true; | 44 return true; |
(...skipping 24 matching lines...) Expand all Loading... |
69 | 69 |
70 gfx::Size DriSurface::Size() const { | 70 gfx::Size DriSurface::Size() const { |
71 return size_; | 71 return size_; |
72 } | 72 } |
73 | 73 |
74 SkCanvas* DriSurface::GetDrawableForWidget() { | 74 SkCanvas* DriSurface::GetDrawableForWidget() { |
75 CHECK(backbuffer()); | 75 CHECK(backbuffer()); |
76 return backbuffer()->canvas(); | 76 return backbuffer()->canvas(); |
77 } | 77 } |
78 | 78 |
79 DriBuffer* DriSurface::CreateBuffer() { return new DriBuffer(dri_); } | |
80 | |
81 } // namespace ui | 79 } // namespace ui |
OLD | NEW |