OLD | NEW |
(Empty) | |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ui/gfx/ozone/dri/gbm_surface.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 #include "third_party/mesa/src/src/gbm/main/gbm.h" |
| 9 #include "ui/gfx/ozone/dri/hardware_display_controller.h" |
| 10 |
| 11 namespace gfx { |
| 12 |
| 13 namespace { |
| 14 |
| 15 // Pixel configuration for the current buffer format. |
| 16 // TODO(dnicoara) These will need to change once we'll query the hardware for |
| 17 // supported configurations. |
| 18 const uint8_t kColorDepth = 24; |
| 19 const uint8_t kPixelDepth = 32; |
| 20 |
| 21 class BufferData { |
| 22 public: |
| 23 // When we create the BufferData we need to register the buffer with the |
| 24 // controller. Once successfully registered, the |framebuffer_| field will |
| 25 // hold the ID of the buffer. The controller will use this ID when scanning |
| 26 // out the buffer. On creation we will also associate the BufferData with the |
| 27 // buffer. |
| 28 static BufferData* CreateData(HardwareDisplayController* controller, |
| 29 gbm_bo* buffer); |
| 30 |
| 31 // Callback used by GBM to destory the BufferData associated with a buffer. |
| 32 static void Destroy(gbm_bo* buffer, void* data); |
| 33 |
| 34 // Returns the BufferData associated with |buffer|. NULL if no data is |
| 35 // associated. |
| 36 static BufferData* GetData(gbm_bo* buffer); |
| 37 |
| 38 uint32_t get_framebuffer() const { return framebuffer_; } |
| 39 |
| 40 private: |
| 41 BufferData(HardwareDisplayController* controller); |
| 42 |
| 43 ~BufferData(); |
| 44 |
| 45 HardwareDisplayController* controller_; |
| 46 |
| 47 // ID provided by the controller when the buffer is registered. This ID is |
| 48 // used when scanning out the buffer. |
| 49 uint32_t framebuffer_; |
| 50 |
| 51 DISALLOW_COPY_AND_ASSIGN(BufferData); |
| 52 }; |
| 53 |
| 54 BufferData::BufferData(HardwareDisplayController* controller) |
| 55 : controller_(controller), |
| 56 framebuffer_(0) { |
| 57 } |
| 58 |
| 59 BufferData::~BufferData() { |
| 60 if (framebuffer_) |
| 61 controller_->RemoveFramebuffer(framebuffer_); |
| 62 } |
| 63 |
| 64 // static |
| 65 BufferData* BufferData::CreateData(HardwareDisplayController* controller, |
| 66 gbm_bo* buffer) { |
| 67 uint32_t handle = gbm_bo_get_handle(buffer).u32; |
| 68 uint32_t stride = gbm_bo_get_stride(buffer); |
| 69 |
| 70 BufferData* data = new BufferData(controller); |
| 71 // Register the buffer with the controller. This will allow us to scan out the |
| 72 // buffer once we're done drawing into it. If we can't register the buffer |
| 73 // then there's no point in having BufferData associated with it. |
| 74 if (!controller->AddFramebuffer(kColorDepth, |
| 75 kPixelDepth, |
| 76 stride, |
| 77 handle, |
| 78 &data->framebuffer_)) { |
| 79 delete data; |
| 80 return NULL; |
| 81 } |
| 82 |
| 83 // GBM can destroy the buffers at any time as long as they aren't locked. This |
| 84 // sets a callback such that we can clean up all our state when GBM destroys |
| 85 // the buffer. |
| 86 gbm_bo_set_user_data(buffer, data, BufferData::Destroy); |
| 87 |
| 88 return data; |
| 89 } |
| 90 |
| 91 // static |
| 92 void BufferData::Destroy(gbm_bo* buffer, void* data) { |
| 93 BufferData* bd = static_cast<BufferData*>(data); |
| 94 delete bd; |
| 95 } |
| 96 |
| 97 // static |
| 98 BufferData* BufferData::GetData(gbm_bo* buffer) { |
| 99 return static_cast<BufferData*>(gbm_bo_get_user_data(buffer)); |
| 100 } |
| 101 |
| 102 } // namespace |
| 103 |
| 104 GbmSurface::GbmSurface(HardwareDisplayController* controller, |
| 105 gbm_device* device) |
| 106 : controller_(controller), |
| 107 gbm_device_(device), |
| 108 native_surface_(NULL), |
| 109 buffers_(), |
| 110 front_buffer_(0) { |
| 111 for (int i = 0; i < 2; ++i) |
| 112 buffers_[i] = NULL; |
| 113 } |
| 114 |
| 115 GbmSurface::~GbmSurface() { |
| 116 for (int i = 0; i < 2; ++i) { |
| 117 if (buffers_[i]) { |
| 118 gbm_surface_release_buffer(native_surface_, buffers_[i]); |
| 119 } |
| 120 } |
| 121 |
| 122 if (native_surface_) |
| 123 gbm_surface_destroy(native_surface_); |
| 124 } |
| 125 |
| 126 bool GbmSurface::Initialize() { |
| 127 // TODO(dnicoara) Check underlying system support for pixel format. |
| 128 native_surface_ = gbm_surface_create( |
| 129 gbm_device_, |
| 130 controller_->get_mode().hdisplay, |
| 131 controller_->get_mode().vdisplay, |
| 132 GBM_BO_FORMAT_XRGB8888, |
| 133 GBM_BO_USE_SCANOUT | GBM_BO_USE_RENDERING); |
| 134 |
| 135 if (!native_surface_) |
| 136 return false; |
| 137 |
| 138 return true; |
| 139 } |
| 140 |
| 141 uint32_t GbmSurface::GetFramebufferId() const { |
| 142 BufferData* data = BufferData::GetData(buffers_[front_buffer_ ^ 1]); |
| 143 return data->get_framebuffer(); |
| 144 } |
| 145 |
| 146 void GbmSurface::SwapBuffers() { |
| 147 // If there was a frontbuffer, is no longer active. Release it back to GBM. |
| 148 if (buffers_[front_buffer_]) |
| 149 gbm_surface_release_buffer(native_surface_, buffers_[front_buffer_]); |
| 150 |
| 151 // Update the index to the frontbuffer. |
| 152 front_buffer_ ^= 1; |
| 153 // We've just released it. Since GBM doesn't guarantee we'll get the same |
| 154 // buffer back, we set it to NULL so we don't keep track of objects that may |
| 155 // have been destroyed. |
| 156 buffers_[front_buffer_ ^ 1] = NULL; |
| 157 } |
| 158 |
| 159 void GbmSurface::LockCurrentDrawable() { |
| 160 // Lock the buffer we want to display. |
| 161 buffers_[front_buffer_ ^ 1] = gbm_surface_lock_front_buffer(native_surface_); |
| 162 |
| 163 BufferData* data = BufferData::GetData(buffers_[front_buffer_ ^ 1]); |
| 164 // If it is a new buffer, it won't have any data associated with it. So we |
| 165 // create it. On creation it will associate itself with the buffer and |
| 166 // register the buffer with the |controller_|. |
| 167 if (data == NULL) { |
| 168 data = BufferData::CreateData(controller_, buffers_[front_buffer_ ^ 1]); |
| 169 DCHECK(data) << "Failed to associate the buffer with the controller"; |
| 170 } |
| 171 } |
| 172 |
| 173 } // namespace gfx |
OLD | NEW |