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

Unified Diff: ui/ozone/platform/drm/gpu/client_native_pixmap_vgem.h

Issue 1134993003: ozone: Implement zero/one-copy texture for Ozone GBM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase to ToT Created 5 years, 4 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/gbm.gypi ('k') | ui/ozone/platform/drm/gpu/client_native_pixmap_vgem.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/drm/gpu/client_native_pixmap_vgem.h
diff --git a/ui/ozone/platform/drm/gpu/client_native_pixmap_vgem.h b/ui/ozone/platform/drm/gpu/client_native_pixmap_vgem.h
new file mode 100644
index 0000000000000000000000000000000000000000..9f3bf813250ee64958708d839118a28c05abbd1e
--- /dev/null
+++ b/ui/ozone/platform/drm/gpu/client_native_pixmap_vgem.h
@@ -0,0 +1,46 @@
+// Copyright 2015 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_GPU_CLIENT_NATIVE_PIXMAP_VGEM_H_
+#define UI_OZONE_PLATFORM_DRM_GPU_CLIENT_NATIVE_PIXMAP_VGEM_H_
+
+#include "base/file_descriptor_posix.h"
+#include "ui/gfx/geometry/size.h"
+#include "ui/gfx/native_pixmap_handle_ozone.h"
+#include "ui/ozone/public/client_native_pixmap.h"
+
+namespace ui {
+
+class ClientNativePixmapVgem : public ClientNativePixmap {
+ public:
+ static scoped_ptr<ClientNativePixmap> ImportFromDmabuf(int vgem_fd,
+ int dmabuf_fd,
+ const gfx::Size& size,
+ int stride);
+
+ ~ClientNativePixmapVgem() override;
+
+ // Overridden from ClientNativePixmap.
+ void* Map() override;
+ void Unmap() override;
+ void GetStride(int* stride) const override;
+
+ private:
+ ClientNativePixmapVgem(int vgem_fd,
+ uint32_t vgem_bo_handle,
+ const gfx::Size& size,
+ int stride);
+
+ const int vgem_fd_;
+ const uint32_t vgem_bo_handle_;
+ const gfx::Size size_;
+ const int stride_;
+ void* data_;
+
+ DISALLOW_COPY_AND_ASSIGN(ClientNativePixmapVgem);
+};
+
+} // namespace ui
+
+#endif // UI_OZONE_PLATFORM_DRM_GPU_CLIENT_NATIVE_PIXMAP_VGEM_H_
« no previous file with comments | « ui/ozone/platform/drm/gbm.gypi ('k') | ui/ozone/platform/drm/gpu/client_native_pixmap_vgem.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698