| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |