Chromium Code Reviews| 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_ |