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

Side by Side Diff: ui/gl/init/ozone_util.h

Issue 2270463002: Add OzoneGLImpl interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename. Created 4 years, 3 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
(Empty)
1 // Copyright 2016 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_GL_INIT_OZONE_UTIL_H_
6 #define UI_GL_INIT_OZONE_UTIL_H_
7
8 #include "base/macros.h"
9 #include "ui/gl/gl_implementation.h"
10 #include "ui/ozone/public/gl_ozone.h"
11 #include "ui/ozone/public/surface_factory_ozone.h"
12
13 namespace gl {
rjkroege 2016/08/26 19:55:53 Can you remind me of the layering? I think it shou
kylechar 2016/08/29 15:38:14 Yep, that's exactly it.
14
15 ui::SurfaceFactoryOzone* GetSurfaceFactory();
16
17 // Returns true if there is an GLOzone for the specified GL implementation.
18 bool HasGLOzone(GLImplementation impl);
19
20 // Returns true if there is an GLOzone for the set GL implementation.
21 bool HasGLOzone();
22
23 // Returns the GLOzone for the specified GL implementation or null if none
24 // exists.
25 ui::GLOzone* GetGLOzone(GLImplementation impl);
26
27 // Returns the GLOzone for the set GL implementation or null if none exists.
28 ui::GLOzone* GetGLOzone();
29
30 } // namespace gl
31
32 #endif // UI_GL_INIT_OZONE_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698