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 #ifndef UI_GFX_OZONE_DRI_GBM_SURFACE_H_ |
| 6 #define UI_GFX_OZONE_DRI_GBM_SURFACE_H_ |
| 7 |
| 8 #include "base/compiler_specific.h" |
| 9 #include "ui/gfx/ozone/dri/scanout_surface.h" |
| 10 |
| 11 struct gbm_bo; |
| 12 struct gbm_device; |
| 13 struct gbm_surface; |
| 14 |
| 15 namespace gfx { |
| 16 |
| 17 class HardwareDisplayController; |
| 18 |
| 19 // Implement the ScanoutSurface interface on top of GBM (Generic Buffer |
| 20 // Manager). GBM provides generic access to hardware accelerated surfaces which |
| 21 // can be used in association with EGL to provide accelerated drawing. |
| 22 class GbmSurface : public ScanoutSurface { |
| 23 public: |
| 24 GbmSurface(HardwareDisplayController* controller, |
| 25 gbm_device* device); |
| 26 virtual ~GbmSurface(); |
| 27 |
| 28 virtual bool Initialize() OVERRIDE; |
| 29 virtual uint32_t GetFramebufferId() const OVERRIDE; |
| 30 |
| 31 // If the |frontbuffer_| is a valid pointer, then we need to unlock it such |
| 32 // that GBM can re-use the memory for future backbuffers. This is called from |
| 33 // GbmSurfaceFactory when the page flip event is completed. |
| 34 virtual void SwapBuffers() OVERRIDE; |
| 35 |
| 36 // Before scheduling the backbuffer to be scanned out we need to "lock" it. |
| 37 // When we lock it, GBM will give a pointer to a buffer representing the |
| 38 // backbuffer. It will also update its information on which buffers can not be |
| 39 // used for drawing. The buffer will be released when the page flip event |
| 40 // occurs (see SwapBuffers). This is called from GbmSurfaceFactory before |
| 41 // scheduling a page flip. |
| 42 void LockCurrentDrawable(); |
| 43 |
| 44 gbm_surface* get_native_surface() { return native_surface_; }; |
| 45 |
| 46 private: |
| 47 HardwareDisplayController* controller_; |
| 48 |
| 49 gbm_device* gbm_device_; |
| 50 |
| 51 // The native GBM surface. In EGL this represents the EGLNativeWindowType. |
| 52 gbm_surface* native_surface_; |
| 53 |
| 54 // Backing GBM buffers. One is the current front buffer. The other is the |
| 55 // current backbuffer that is pending scan out. |
| 56 gbm_bo* buffers_[2]; |
| 57 |
| 58 // Index to the front buffer. |
| 59 int front_buffer_; |
| 60 |
| 61 DISALLOW_COPY_AND_ASSIGN(GbmSurface); |
| 62 }; |
| 63 |
| 64 } // namespace gfx |
| 65 |
| 66 #endif // UI_GFX_OZONE_DRI_GBM_SURFACE_H_ |
OLD | NEW |