| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_OZONE_PLATFORM_DRI_DRI_BUFFER_H_ | 5 #ifndef UI_OZONE_PLATFORM_DRI_DRI_BUFFER_H_ |
| 6 #define UI_OZONE_PLATFORM_DRI_DRI_BUFFER_H_ | 6 #define UI_OZONE_PLATFORM_DRI_DRI_BUFFER_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "skia/ext/refptr.h" | 9 #include "skia/ext/refptr.h" |
| 10 #include "third_party/skia/include/core/SkSurface.h" | 10 #include "third_party/skia/include/core/SkSurface.h" |
| 11 | 11 #include "ui/ozone/platform/dri/scanout_buffer.h" |
| 12 class SkCanvas; | |
| 13 | 12 |
| 14 namespace ui { | 13 namespace ui { |
| 15 | 14 |
| 16 class DriWrapper; | 15 class DriWrapper; |
| 17 | 16 |
| 18 // Wrapper for a DRM allocated buffer. Keeps track of the native properties of | 17 // Wrapper for a DRM allocated buffer. Keeps track of the native properties of |
| 19 // the buffer and wraps the pixel memory into a SkSurface which can be used to | 18 // the buffer and wraps the pixel memory into a SkSurface which can be used to |
| 20 // draw into using Skia. | 19 // draw into using Skia. |
| 21 class DriBuffer { | 20 class DriBuffer : public ScanoutBuffer { |
| 22 public: | 21 public: |
| 23 DriBuffer(DriWrapper* dri); | 22 DriBuffer(DriWrapper* dri); |
| 24 ~DriBuffer(); | |
| 25 | |
| 26 uint32_t stride() const { return stride_; } | |
| 27 uint32_t handle() const { return handle_; } | |
| 28 uint32_t framebuffer() const { return framebuffer_; } | |
| 29 SkCanvas* canvas() { return surface_->getCanvas(); } | |
| 30 | 23 |
| 31 // Allocates the backing pixels and wraps them in |surface_|. |info| is used | 24 // Allocates the backing pixels and wraps them in |surface_|. |info| is used |
| 32 // to describe the buffer characteristics (size, color format). | 25 // to describe the buffer characteristics (size, color format). |
| 33 bool Initialize(const SkImageInfo& info); | 26 bool Initialize(const SkImageInfo& info); |
| 34 | 27 |
| 35 private: | 28 SkCanvas* GetCanvas() const; |
| 29 |
| 30 // ScanoutBuffer: |
| 31 virtual uint32_t GetFramebufferId() const OVERRIDE; |
| 32 virtual uint32_t GetHandle() const OVERRIDE; |
| 33 virtual gfx::Size GetSize() const OVERRIDE; |
| 34 |
| 35 protected: |
| 36 virtual ~DriBuffer(); |
| 37 |
| 36 DriWrapper* dri_; // Not owned. | 38 DriWrapper* dri_; // Not owned. |
| 37 | 39 |
| 38 // Wrapper around the native pixel memory. | 40 // Wrapper around the native pixel memory. |
| 39 skia::RefPtr<SkSurface> surface_; | 41 skia::RefPtr<SkSurface> surface_; |
| 40 | 42 |
| 41 // Length of a row of pixels. | 43 // Length of a row of pixels. |
| 42 uint32_t stride_; | 44 uint32_t stride_; |
| 43 | 45 |
| 44 // Buffer handle used by the DRM allocator. | 46 // Buffer handle used by the DRM allocator. |
| 45 uint32_t handle_; | 47 uint32_t handle_; |
| 46 | 48 |
| 47 // Buffer ID used by the DRM modesettings API. This is set when the buffer is | 49 // Buffer ID used by the DRM modesettings API. This is set when the buffer is |
| 48 // registered with the CRTC. | 50 // registered with the CRTC. |
| 49 uint32_t framebuffer_; | 51 uint32_t framebuffer_; |
| 50 | 52 |
| 51 DISALLOW_COPY_AND_ASSIGN(DriBuffer); | 53 DISALLOW_COPY_AND_ASSIGN(DriBuffer); |
| 52 }; | 54 }; |
| 53 | 55 |
| 56 class DriBufferGenerator : public ScanoutBufferGenerator { |
| 57 public: |
| 58 DriBufferGenerator(DriWrapper* dri); |
| 59 virtual ~DriBufferGenerator(); |
| 60 |
| 61 // ScanoutBufferGenerator: |
| 62 virtual scoped_refptr<ScanoutBuffer> Create(const gfx::Size& size) OVERRIDE; |
| 63 |
| 64 private: |
| 65 DriWrapper* dri_; // Not owned. |
| 66 |
| 67 DISALLOW_COPY_AND_ASSIGN(DriBufferGenerator); |
| 68 }; |
| 69 |
| 54 } // namespace ui | 70 } // namespace ui |
| 55 | 71 |
| 56 #endif // UI_OZONE_PLATFORM_DRI_DRI_BUFFER_H_ | 72 #endif // UI_OZONE_PLATFORM_DRI_DRI_BUFFER_H_ |
| OLD | NEW |