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

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

Issue 371813004: ozone: gbm: Add overlay support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix test build Created 6 years, 5 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
« no previous file with comments | « ui/ozone/platform/dri/dri_surface.h ('k') | ui/ozone/platform/dri/dri_surface_factory.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 <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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 uint32_t DriSurface::GetFramebufferId() const { 47 uint32_t DriSurface::GetFramebufferId() const {
48 CHECK(backbuffer()); 48 CHECK(backbuffer());
49 return backbuffer()->framebuffer(); 49 return backbuffer()->framebuffer();
50 } 50 }
51 51
52 uint32_t DriSurface::GetHandle() const { 52 uint32_t DriSurface::GetHandle() const {
53 CHECK(backbuffer()); 53 CHECK(backbuffer());
54 return backbuffer()->handle(); 54 return backbuffer()->handle();
55 } 55 }
56 56
57 void DriSurface::PreSwapBuffers() {
58 }
59
57 // This call is made after the hardware just started displaying our back buffer. 60 // This call is made after the hardware just started displaying our back buffer.
58 // We need to update our pointer reference and synchronize the two buffers. 61 // We need to update our pointer reference and synchronize the two buffers.
59 void DriSurface::SwapBuffers() { 62 void DriSurface::SwapBuffers() {
60 CHECK(frontbuffer()); 63 CHECK(frontbuffer());
61 CHECK(backbuffer()); 64 CHECK(backbuffer());
62 65
63 // Update our front buffer pointer. 66 // Update our front buffer pointer.
64 front_buffer_ ^= 1; 67 front_buffer_ ^= 1;
65 } 68 }
66 69
67 gfx::Size DriSurface::Size() const { 70 gfx::Size DriSurface::Size() const {
68 return size_; 71 return size_;
69 } 72 }
70 73
71 SkCanvas* DriSurface::GetDrawableForWidget() { 74 SkCanvas* DriSurface::GetDrawableForWidget() {
72 CHECK(backbuffer()); 75 CHECK(backbuffer());
73 return backbuffer()->canvas(); 76 return backbuffer()->canvas();
74 } 77 }
75 78
76 DriBuffer* DriSurface::CreateBuffer() { return new DriBuffer(dri_); } 79 DriBuffer* DriSurface::CreateBuffer() { return new DriBuffer(dri_); }
77 80
78 } // namespace ui 81 } // namespace ui
OLDNEW
« no previous file with comments | « ui/ozone/platform/dri/dri_surface.h ('k') | ui/ozone/platform/dri/dri_surface_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698