| OLD | NEW |
| 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 Loading... |
| 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 const std::vector<gfx::NativePixmapPlane>& planes) { | 47 std::vector<int> strides, |
| 48 std::vector<int> offsets) { |
| 48 scoped_refptr<GbmBuffer> buffer; | 49 scoped_refptr<GbmBuffer> buffer; |
| 49 PostSyncTask(drm_thread_.task_runner(), | 50 PostSyncTask( |
| 50 base::Bind(&DrmThread::CreateBufferFromFds, | 51 drm_thread_.task_runner(), |
| 51 base::Unretained(&drm_thread_), size, format, | 52 base::Bind(&DrmThread::CreateBufferFromFds, |
| 52 base::Passed(std::move(fds)), planes, &buffer)); | 53 base::Unretained(&drm_thread_), size, format, |
| 54 base::Passed(std::move(fds)), strides, offsets, &buffer)); |
| 53 return buffer; | 55 return buffer; |
| 54 } | 56 } |
| 55 | 57 |
| 56 void DrmThreadProxy::GetScanoutFormats( | 58 void DrmThreadProxy::GetScanoutFormats( |
| 57 gfx::AcceleratedWidget widget, | 59 gfx::AcceleratedWidget widget, |
| 58 std::vector<gfx::BufferFormat>* scanout_formats) { | 60 std::vector<gfx::BufferFormat>* scanout_formats) { |
| 59 PostSyncTask( | 61 PostSyncTask( |
| 60 drm_thread_.task_runner(), | 62 drm_thread_.task_runner(), |
| 61 base::Bind(&DrmThread::GetScanoutFormats, base::Unretained(&drm_thread_), | 63 base::Bind(&DrmThread::GetScanoutFormats, base::Unretained(&drm_thread_), |
| 62 widget, scanout_formats)); | 64 widget, scanout_formats)); |
| 63 } | 65 } |
| 64 | 66 |
| 65 } // namespace ui | 67 } // namespace ui |
| OLD | NEW |