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

Side by Side Diff: ui/ozone/platform/drm/gpu/drm_thread_proxy.cc

Issue 2039813002: Add format modifier IDs for EGL_EXT_image_dma_buf_import extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add format modifier IDs for EGL_EXT_image_dma_buf_import extension Created 4 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 "ui/ozone/platform/drm/gpu/drm_thread_proxy.h" 5 #include "ui/ozone/platform/drm/gpu/drm_thread_proxy.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/memory/ptr_util.h" 8 #include "base/memory/ptr_util.h"
9 #include "ui/ozone/platform/drm/gpu/drm_thread_message_proxy.h" 9 #include "ui/ozone/platform/drm/gpu/drm_thread_message_proxy.h"
10 #include "ui/ozone/platform/drm/gpu/drm_window_proxy.h" 10 #include "ui/ozone/platform/drm/gpu/drm_window_proxy.h"
(...skipping 26 matching lines...) Expand all
37 drm_thread_.task_runner(), 37 drm_thread_.task_runner(),
38 base::Bind(&DrmThread::CreateBuffer, base::Unretained(&drm_thread_), 38 base::Bind(&DrmThread::CreateBuffer, base::Unretained(&drm_thread_),
39 widget, size, format, usage, &buffer)); 39 widget, size, format, usage, &buffer));
40 return buffer; 40 return buffer;
41 } 41 }
42 42
43 scoped_refptr<GbmBuffer> DrmThreadProxy::CreateBufferFromFds( 43 scoped_refptr<GbmBuffer> DrmThreadProxy::CreateBufferFromFds(
44 const gfx::Size& size, 44 const gfx::Size& size,
45 gfx::BufferFormat format, 45 gfx::BufferFormat format,
46 std::vector<base::ScopedFD>&& fds, 46 std::vector<base::ScopedFD>&& fds,
47 std::vector<int> strides, 47 std::vector<gfx::GbmBufferPlane>&& planes) {
48 std::vector<int> offsets) {
49 scoped_refptr<GbmBuffer> buffer; 48 scoped_refptr<GbmBuffer> buffer;
50 PostSyncTask( 49 PostSyncTask(drm_thread_.task_runner(),
51 drm_thread_.task_runner(), 50 base::Bind(&DrmThread::CreateBufferFromFds,
52 base::Bind(&DrmThread::CreateBufferFromFds, 51 base::Unretained(&drm_thread_), size, format,
53 base::Unretained(&drm_thread_), size, format, 52 base::Passed(std::move(fds)),
54 base::Passed(std::move(fds)), strides, offsets, &buffer)); 53 base::Passed(std::move(planes)), &buffer));
55 return buffer; 54 return buffer;
56 } 55 }
57 56
58 void DrmThreadProxy::GetScanoutFormats( 57 void DrmThreadProxy::GetScanoutFormats(
59 gfx::AcceleratedWidget widget, 58 gfx::AcceleratedWidget widget,
60 std::vector<gfx::BufferFormat>* scanout_formats) { 59 std::vector<gfx::BufferFormat>* scanout_formats) {
61 PostSyncTask( 60 PostSyncTask(
62 drm_thread_.task_runner(), 61 drm_thread_.task_runner(),
63 base::Bind(&DrmThread::GetScanoutFormats, base::Unretained(&drm_thread_), 62 base::Bind(&DrmThread::GetScanoutFormats, base::Unretained(&drm_thread_),
64 widget, scanout_formats)); 63 widget, scanout_formats));
65 } 64 }
66 65
67 } // namespace ui 66 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698