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

Side by Side Diff: ui/gfx/ozone/dri/gbm_surface_factory.h

Issue 132543002: Not for review. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/gfx/ozone/dri/gbm_surface.cc ('k') | ui/gfx/ozone/dri/gbm_surface_factory.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_
OLDNEW
« no previous file with comments | « ui/gfx/ozone/dri/gbm_surface.cc ('k') | ui/gfx/ozone/dri/gbm_surface_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698