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

Unified Diff: ui/ozone/platform/drm/gpu/drm_thread.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.h ('k') | ui/ozone/platform/drm/gpu/drm_thread_proxy.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.cc
diff --git a/ui/ozone/platform/drm/gpu/drm_thread.cc b/ui/ozone/platform/drm/gpu/drm_thread.cc
index ebc89da636415fb4a35043f67c69ac9662679d23..995373eb6ba6ae3840eb22c36b1a83c441b2b58e 100644
--- a/ui/ozone/platform/drm/gpu/drm_thread.cc
+++ b/ui/ozone/platform/drm/gpu/drm_thread.cc
@@ -110,17 +110,17 @@
*buffer = GbmBuffer::CreateBuffer(gbm, format, size, usage);
}
-void DrmThread::CreateBufferFromFds(
- const gfx::Size& size,
- gfx::BufferFormat format,
- std::vector<base::ScopedFD>&& fds,
- const std::vector<gfx::NativePixmapPlane>& planes,
- scoped_refptr<GbmBuffer>* buffer) {
+void DrmThread::CreateBufferFromFds(const gfx::Size& size,
+ gfx::BufferFormat format,
+ std::vector<base::ScopedFD>&& fds,
+ std::vector<int> strides,
+ std::vector<int> offsets,
+ scoped_refptr<GbmBuffer>* buffer) {
scoped_refptr<GbmDevice> gbm =
static_cast<GbmDevice*>(device_manager_->GetPrimaryDrmDevice().get());
DCHECK(gbm);
- *buffer =
- GbmBuffer::CreateBufferFromFds(gbm, format, size, std::move(fds), planes);
+ *buffer = GbmBuffer::CreateBufferFromFds(gbm, format, size, std::move(fds),
+ strides, offsets);
}
void DrmThread::GetScanoutFormats(
« no previous file with comments | « ui/ozone/platform/drm/gpu/drm_thread.h ('k') | ui/ozone/platform/drm/gpu/drm_thread_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698