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_DRI_GBM_SURFACE_FACTORY_H_ |
| 6 #define UI_GFX_DRI_GBM_SURFACE_FACTORY_H_ |
| 7 |
| 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "ui/gfx/ozone/dri/dri_surface_factory.h" |
| 10 #include "ui/gfx/ozone/overlay_hal_ozone.h" |
| 11 |
| 12 struct gbm_device; |
| 13 |
| 14 namespace gfx { |
| 15 |
| 16 class DriWrapper; |
| 17 class HardwareDisplayController; |
| 18 class ScanoutSurface; |
| 19 |
| 20 class GbmSurfaceFactory : public DriSurfaceFactory, public OverlayHALOzone { |
| 21 public: |
| 22 GbmSurfaceFactory(); |
| 23 virtual ~GbmSurfaceFactory(); |
| 24 |
| 25 virtual HardwareState InitializeHardware() OVERRIDE; |
| 26 virtual void ShutdownHardware() OVERRIDE; |
| 27 |
| 28 virtual intptr_t GetNativeDisplay() OVERRIDE; |
| 29 virtual const int32* GetEGLSurfaceProperties( |
| 30 const int32* desired_list) OVERRIDE; |
| 31 |
| 32 virtual bool LoadEGLGLES2Bindings( |
| 33 AddGLLibraryCallback add_gl_library, |
| 34 SetGLGetProcAddressProcCallback set_gl_get_proc_address) OVERRIDE; |
| 35 |
| 36 virtual bool AttemptToResizeAcceleratedWidget( |
| 37 gfx::AcceleratedWidget w, const gfx::Rect& bounds) OVERRIDE; |
| 38 |
| 39 virtual bool SchedulePageFlip(gfx::AcceleratedWidget w) OVERRIDE; |
| 40 |
| 41 virtual gfx::AcceleratedWidget CreateNativeBuffer( |
| 42 gfx::Size size, |
| 43 unsigned internalformat) OVERRIDE; |
| 44 |
| 45 virtual void SetOverlayPlane(int plane_id, |
| 46 gfx::AcceleratedWidget handle, |
| 47 const gfx::Rect& bounds) OVERRIDE; |
| 48 |
| 49 virtual void* GetFunctionPointerFromNativeLibrary(base::NativeLibrary library, |
| 50 const char* name) OVERRIDE; |
| 51 |
| 52 // OverlayHALOzone impleme3ntation. |
| 53 virtual void CheckOverlaySupport(SurfaceCandidateList* surfaces) OVERRIDE; |
| 54 |
| 55 private: |
| 56 virtual ScanoutSurface* CreateSurface( |
| 57 HardwareDisplayController* controller) OVERRIDE; |
| 58 |
| 59 virtual gfx::AcceleratedWidget GetNativeWidget( |
| 60 ScanoutSurface* surface) OVERRIDE; |
| 61 |
| 62 // A GBM device used to create surfaces for |drm_|. |
| 63 gbm_device* device_; |
| 64 |
| 65 DISALLOW_COPY_AND_ASSIGN(GbmSurfaceFactory); |
| 66 }; |
| 67 |
| 68 } // namespace gfx |
| 69 |
| 70 #endif // UI_GFX_DRI_GBM_SURFACE_FACTORY_H_ |
OLD | NEW |