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

Unified Diff: ui/gfx/linux/native_pixmap_dmabuf_stub.h

Issue 2705213005: Add NativePixmapDmabufStub to finalize glCreateImageCHROMIUM on Linux. (Closed)
Patch Set: Rebase Created 3 years, 8 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/gfx/linux/native_pixmap_dmabuf_stub.h
diff --git a/ui/gfx/linux/native_pixmap_dmabuf_stub.h b/ui/gfx/linux/native_pixmap_dmabuf_stub.h
new file mode 100644
index 0000000000000000000000000000000000000000..7cda0a4545fe685c7ec0a5e4ee3ddda3cf2c4847
--- /dev/null
+++ b/ui/gfx/linux/native_pixmap_dmabuf_stub.h
@@ -0,0 +1,58 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
reveman 2017/04/12 18:21:36 do we need to add this class/file? Can we instead
Julien Isorce 2017/04/13 12:46:02 Could you elaborate ? Because here this is the ser
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef UI_GFX_LINUX_NATIVE_PIXMAP_DMABUF_STUB_H_
+#define UI_GFX_LINUX_NATIVE_PIXMAP_DMABUF_STUB_H_
+
+#include <stdint.h>
+
+#include <memory>
+
+#include "base/files/scoped_file.h"
+#include "base/macros.h"
+#include "ui/gfx/client_native_pixmap.h"
+#include "ui/gfx/geometry/size.h"
+#include "ui/gfx/native_pixmap.h"
+
+namespace ui {
+
+class NativePixmapDmaBufStub : public NativePixmap {
+ public:
+ NativePixmapDmaBufStub(const gfx::Size& size,
+ gfx::BufferFormat format,
+ const gfx::NativePixmapHandle& handle);
+
+ ~NativePixmapDmaBufStub() override;
+
+ // NativePixmap:
+ void* GetEGLClientBuffer() const override;
+ bool AreDmaBufFdsValid() const override;
+ size_t GetDmaBufFdCount() const override;
+ int GetDmaBufFd(size_t plane) const override;
+ int GetDmaBufPitch(size_t plane) const override;
+ int GetDmaBufOffset(size_t plane) const override;
+ uint64_t GetDmaBufModifier(size_t plane) const override;
+ gfx::BufferFormat GetBufferFormat() const override;
+ gfx::Size GetBufferSize() const override;
+ bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget,
+ int plane_z_order,
+ gfx::OverlayTransform plane_transform,
+ const gfx::Rect& display_bounds,
+ const gfx::RectF& crop_rect) override;
+ void SetProcessingCallback(
+ const ProcessingCallback& processing_callback) override;
+ gfx::NativePixmapHandle ExportHandle() override;
+
+ private:
+ gfx::Size size_;
+ gfx::BufferFormat format_;
+ std::vector<base::ScopedFD> fds_;
+ std::vector<gfx::NativePixmapPlane> planes_;
+
+ DISALLOW_COPY_AND_ASSIGN(NativePixmapDmaBufStub);
+};
+
+} // namespace ui
+
+#endif // UI_GFX_LINUX_NATIVE_PIXMAP_DMABUF_STUB_H_

Powered by Google App Engine
This is Rietveld 408576698