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

Side by Side Diff: ui/gl/gl_egl_api_implementation.cc

Issue 895853003: Update from https://crrev.com/314320 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 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
« no previous file with comments | « ui/gl/gl_egl_api_implementation.h ('k') | ui/gl/gl_gl_api_implementation.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "ui/gl/gl_egl_api_implementation.h" 5 #include "ui/gl/gl_egl_api_implementation.h"
6 #include "ui/gl/gl_implementation.h" 6 #include "ui/gl/gl_implementation.h"
7 7
8 namespace gfx { 8 namespace gfx {
9 9
10 RealEGLApi* g_real_egl; 10 RealEGLApi* g_real_egl;
11 11
12 void InitializeStaticGLBindingsEGL() { 12 void InitializeStaticGLBindingsEGL() {
13 g_driver_egl.InitializeStaticBindings();
14 if (!g_real_egl) { 13 if (!g_real_egl) {
15 g_real_egl = new RealEGLApi(); 14 g_real_egl = new RealEGLApi();
16 } 15 }
17 g_real_egl->Initialize(&g_driver_egl); 16 g_real_egl->Initialize(&g_driver_egl);
18 g_current_egl_context = g_real_egl; 17 g_current_egl_context = g_real_egl;
19 } 18 g_driver_egl.InitializeStaticBindings();
20
21 void InitializeDynamicGLBindingsEGL(GLContext* context) {
22 g_driver_egl.InitializeDynamicBindings(context);
23 } 19 }
24 20
25 void InitializeDebugGLBindingsEGL() { 21 void InitializeDebugGLBindingsEGL() {
26 g_driver_egl.InitializeDebugBindings(); 22 g_driver_egl.InitializeDebugBindings();
27 } 23 }
28 24
29 void ClearGLBindingsEGL() { 25 void ClearGLBindingsEGL() {
30 if (g_real_egl) { 26 if (g_real_egl) {
31 delete g_real_egl; 27 delete g_real_egl;
32 g_real_egl = NULL; 28 g_real_egl = NULL;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 if (version) 72 if (version)
77 info->version = version; 73 info->version = version;
78 if (extensions) 74 if (extensions)
79 info->extensions = extensions; 75 info->extensions = extensions;
80 return true; 76 return true;
81 } 77 }
82 78
83 } // namespace gfx 79 } // namespace gfx
84 80
85 81
OLDNEW
« no previous file with comments | « ui/gl/gl_egl_api_implementation.h ('k') | ui/gl/gl_gl_api_implementation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698