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

Unified Diff: ui/ozone/platform/drm/gpu/drm_thread_proxy.cc

Issue 2110213002: Revert of 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: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/ozone/platform/drm/gpu/drm_thread_proxy.h ('k') | ui/ozone/platform/drm/gpu/gbm_buffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/drm/gpu/drm_thread_proxy.cc
diff --git a/ui/ozone/platform/drm/gpu/drm_thread_proxy.cc b/ui/ozone/platform/drm/gpu/drm_thread_proxy.cc
index be3939bea6bcf52b58b4119bfc2b3167fd4ef696..1bc85ca8698a398bea085934f4248fdb3f8ab015 100644
--- a/ui/ozone/platform/drm/gpu/drm_thread_proxy.cc
+++ b/ui/ozone/platform/drm/gpu/drm_thread_proxy.cc
@@ -44,12 +44,14 @@
const gfx::Size& size,
gfx::BufferFormat format,
std::vector<base::ScopedFD>&& fds,
- const std::vector<gfx::NativePixmapPlane>& planes) {
+ std::vector<int> strides,
+ std::vector<int> offsets) {
scoped_refptr<GbmBuffer> buffer;
- PostSyncTask(drm_thread_.task_runner(),
- base::Bind(&DrmThread::CreateBufferFromFds,
- base::Unretained(&drm_thread_), size, format,
- base::Passed(std::move(fds)), planes, &buffer));
+ PostSyncTask(
+ drm_thread_.task_runner(),
+ base::Bind(&DrmThread::CreateBufferFromFds,
+ base::Unretained(&drm_thread_), size, format,
+ base::Passed(std::move(fds)), strides, offsets, &buffer));
return buffer;
}
« no previous file with comments | « ui/ozone/platform/drm/gpu/drm_thread_proxy.h ('k') | ui/ozone/platform/drm/gpu/gbm_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698