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

Side by Side Diff: ui/ozone/platform/drm/gpu/gbm_surface_factory.h

Issue 2731733002: Convert Ozone GL OSMesa implementation. (Closed)
Patch Set: Fix rebase. Created 3 years, 9 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_OZONE_PLATFORM_DRM_GPU_GBM_SURFACE_FACTORY_H_ 5 #ifndef UI_OZONE_PLATFORM_DRM_GPU_GBM_SURFACE_FACTORY_H_
6 #define UI_OZONE_PLATFORM_DRM_GPU_GBM_SURFACE_FACTORY_H_ 6 #define UI_OZONE_PLATFORM_DRM_GPU_GBM_SURFACE_FACTORY_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 gfx::BufferFormat format, 46 gfx::BufferFormat format,
47 gfx::BufferUsage usage) override; 47 gfx::BufferUsage usage) override;
48 scoped_refptr<NativePixmap> CreateNativePixmapFromHandle( 48 scoped_refptr<NativePixmap> CreateNativePixmapFromHandle(
49 gfx::AcceleratedWidget widget, 49 gfx::AcceleratedWidget widget,
50 gfx::Size size, 50 gfx::Size size,
51 gfx::BufferFormat format, 51 gfx::BufferFormat format,
52 const gfx::NativePixmapHandle& handle) override; 52 const gfx::NativePixmapHandle& handle) override;
53 53
54 private: 54 private:
55 std::unique_ptr<GLOzone> egl_implementation_; 55 std::unique_ptr<GLOzone> egl_implementation_;
56 std::unique_ptr<GLOzone> osmesa_implementation_;
56 57
57 base::ThreadChecker thread_checker_; 58 base::ThreadChecker thread_checker_;
58 59
59 DrmThreadProxy* drm_thread_proxy_; 60 DrmThreadProxy* drm_thread_proxy_;
60 61
61 std::map<gfx::AcceleratedWidget, GbmSurfaceless*> widget_to_surface_map_; 62 std::map<gfx::AcceleratedWidget, GbmSurfaceless*> widget_to_surface_map_;
62 63
63 DISALLOW_COPY_AND_ASSIGN(GbmSurfaceFactory); 64 DISALLOW_COPY_AND_ASSIGN(GbmSurfaceFactory);
64 }; 65 };
65 66
66 } // namespace ui 67 } // namespace ui
67 68
68 #endif // UI_OZONE_PLATFORM_DRM_GPU_GBM_SURFACE_FACTORY_H_ 69 #endif // UI_OZONE_PLATFORM_DRM_GPU_GBM_SURFACE_FACTORY_H_
OLDNEW
« no previous file with comments | « ui/ozone/platform/cast/surface_factory_cast.cc ('k') | ui/ozone/platform/drm/gpu/gbm_surface_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698