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

Side by Side Diff: content/browser/gpu/browser_native_pixmap_manager_ozone.cc

Issue 1134993003: ozone: Implement zero/one-copy texture for Ozone GBM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: depend on crrev.com/1128113011 Created 5 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "content/browser/gpu/browser_native_pixmap_manager_ozone.h" 5 #include "content/browser/gpu/browser_native_pixmap_manager_ozone.h"
6 6
7 #include "base/memory/singleton.h" 7 #include "base/memory/singleton.h"
8 #include "base/posix/eintr_wrapper.h" 8 #include "base/posix/eintr_wrapper.h"
9 #include "content/common/gpu/native_pixmap_manager_ozone_messages.h" 9 #include "content/common/gpu/native_pixmap_manager_ozone_messages.h"
10 #include "content/public/browser/browser_message_filter.h" 10 #include "content/public/browser/browser_message_filter.h"
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 callback.Run(base::FileDescriptor()); 101 callback.Run(base::FileDescriptor());
102 return; 102 return;
103 } 103 }
104 callback.Run(base::FileDescriptor(duped_handle, true)); 104 callback.Run(base::FileDescriptor(duped_handle, true));
105 } 105 }
106 106
107 BrowserMessageFilter* BrowserNativePixmapManager::CreateMessageFilter() { 107 BrowserMessageFilter* BrowserNativePixmapManager::CreateMessageFilter() {
108 return new BrowserNativePixmapManagerMessageFilter(this); 108 return new BrowserNativePixmapManagerMessageFilter(this);
109 } 109 }
110 110
111 scoped_refptr<ui::NativePixmap>
112 BrowserNativePixmapManager::CreateFromFileDescriptor(
113 base::FileDescriptor handle,
114 gfx::Size size,
115 ui::SurfaceFactoryOzone::BufferFormat format,
116 ui::SurfaceFactoryOzone::BufferUsage usage) {
117 return pixmap_manager_->CreateFromFileDescriptor(handle, size, format, usage);
118 }
119
111 } // namespace content 120 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698