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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/ozone/dri/gbm_surface_factory.h
diff --git a/ui/gfx/ozone/dri/gbm_surface_factory.h b/ui/gfx/ozone/dri/gbm_surface_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..35c97419771f2eaafe2d07402a36e435fb546be7
--- /dev/null
+++ b/ui/gfx/ozone/dri/gbm_surface_factory.h
@@ -0,0 +1,70 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef UI_GFX_DRI_GBM_SURFACE_FACTORY_H_
+#define UI_GFX_DRI_GBM_SURFACE_FACTORY_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "ui/gfx/ozone/dri/dri_surface_factory.h"
+#include "ui/gfx/ozone/overlay_hal_ozone.h"
+
+struct gbm_device;
+
+namespace gfx {
+
+class DriWrapper;
+class HardwareDisplayController;
+class ScanoutSurface;
+
+class GbmSurfaceFactory : public DriSurfaceFactory, public OverlayHALOzone {
+ public:
+ GbmSurfaceFactory();
+ virtual ~GbmSurfaceFactory();
+
+ virtual HardwareState InitializeHardware() OVERRIDE;
+ virtual void ShutdownHardware() OVERRIDE;
+
+ virtual intptr_t GetNativeDisplay() OVERRIDE;
+ virtual const int32* GetEGLSurfaceProperties(
+ const int32* desired_list) OVERRIDE;
+
+ virtual bool LoadEGLGLES2Bindings(
+ AddGLLibraryCallback add_gl_library,
+ SetGLGetProcAddressProcCallback set_gl_get_proc_address) OVERRIDE;
+
+ virtual bool AttemptToResizeAcceleratedWidget(
+ gfx::AcceleratedWidget w, const gfx::Rect& bounds) OVERRIDE;
+
+ virtual bool SchedulePageFlip(gfx::AcceleratedWidget w) OVERRIDE;
+
+ virtual gfx::AcceleratedWidget CreateNativeBuffer(
+ gfx::Size size,
+ unsigned internalformat) OVERRIDE;
+
+ virtual void SetOverlayPlane(int plane_id,
+ gfx::AcceleratedWidget handle,
+ const gfx::Rect& bounds) OVERRIDE;
+
+ virtual void* GetFunctionPointerFromNativeLibrary(base::NativeLibrary library,
+ const char* name) OVERRIDE;
+
+ // OverlayHALOzone impleme3ntation.
+ virtual void CheckOverlaySupport(SurfaceCandidateList* surfaces) OVERRIDE;
+
+ private:
+ virtual ScanoutSurface* CreateSurface(
+ HardwareDisplayController* controller) OVERRIDE;
+
+ virtual gfx::AcceleratedWidget GetNativeWidget(
+ ScanoutSurface* surface) OVERRIDE;
+
+ // A GBM device used to create surfaces for |drm_|.
+ gbm_device* device_;
+
+ DISALLOW_COPY_AND_ASSIGN(GbmSurfaceFactory);
+};
+
+} // namespace gfx
+
+#endif // UI_GFX_DRI_GBM_SURFACE_FACTORY_H_
« 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