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

Unified Diff: ui/ozone/platform/drm/common/client_native_pixmap_dmabuf.h

Issue 1262043002: Implement DRM Native Pixmap using prime buffer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@new-master
Patch Set: rebase code, address spang comments, and vgem removal Created 4 years, 9 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
Index: ui/ozone/platform/drm/common/client_native_pixmap_dmabuf.h
diff --git a/ui/ozone/platform/drm/common/client_native_pixmap_dmabuf.h b/ui/ozone/platform/drm/common/client_native_pixmap_dmabuf.h
new file mode 100644
index 0000000000000000000000000000000000000000..5a2c91e5124b96787f8224fcb5cb2aa6846f86c3
--- /dev/null
+++ b/ui/ozone/platform/drm/common/client_native_pixmap_dmabuf.h
@@ -0,0 +1,43 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef UI_OZONE_PLATFORM_DRM_COMMON_CLIENT_NATIVE_PIXMAP_DMABUF_H_
+#define UI_OZONE_PLATFORM_DRM_COMMON_CLIENT_NATIVE_PIXMAP_DMABUF_H_
+
+#include <stdint.h>
+
+#include "base/file_descriptor_posix.h"
dshwang 2016/03/23 15:52:51 needed?
vignatti (out of this project) 2016/03/23 19:46:07 Done.
+#include "base/macros.h"
+#include "ui/gfx/geometry/size.h"
+#include "ui/gfx/native_pixmap_handle_ozone.h"
dshwang 2016/03/23 15:52:51 needed?
vignatti (out of this project) 2016/03/23 19:46:07 Done.
+#include "ui/ozone/public/client_native_pixmap.h"
+
+namespace ui {
+
+class ClientNativePixmapDmaBuf : public ClientNativePixmap {
+ public:
+ static scoped_ptr<ClientNativePixmap> ImportFromDmabuf(int dmabuf_fd,
+ const gfx::Size& size,
+ int stride);
+
+ ~ClientNativePixmapDmaBuf() override;
+
+ // Overridden from ClientNativePixmap.
+ void* Map() override;
+ void Unmap() override;
+ void GetStride(int* stride) const override;
+
+ private:
+ ClientNativePixmapDmaBuf(int dmabuf_fd, const gfx::Size& size, int stride);
+
+ const gfx::Size size_;
+ const int stride_;
+ void* data_;
+
+ DISALLOW_COPY_AND_ASSIGN(ClientNativePixmapDmaBuf);
+};
+
+} // namespace ui
+
+#endif // UI_OZONE_PLATFORM_DRM_COMMON_CLIENT_NATIVE_PIXMAP_DMABUF_H_

Powered by Google App Engine
This is Rietveld 408576698