| Index: ui/gl/gl_egl_api_implementation.cc
|
| diff --git a/ui/gl/gl_egl_api_implementation.cc b/ui/gl/gl_egl_api_implementation.cc
|
| index 43aa138a3f83c8e5f2301e530c8b5f2b8a844a0d..b3b55b8ff8ff518e536f219b29e729357a7fb07f 100644
|
| --- a/ui/gl/gl_egl_api_implementation.cc
|
| +++ b/ui/gl/gl_egl_api_implementation.cc
|
| @@ -9,8 +9,8 @@ namespace gfx {
|
|
|
| RealEGLApi* g_real_egl;
|
|
|
| -void InitializeGLBindingsEGL() {
|
| - g_driver_egl.InitializeBindings();
|
| +void InitializeStaticGLBindingsEGL() {
|
| + g_driver_egl.InitializeStaticBindings();
|
| if (!g_real_egl) {
|
| g_real_egl = new RealEGLApi();
|
| }
|
| @@ -18,8 +18,8 @@ void InitializeGLBindingsEGL() {
|
| g_current_egl_context = g_real_egl;
|
| }
|
|
|
| -void InitializeGLExtensionBindingsEGL(GLContext* context) {
|
| - g_driver_egl.InitializeExtensionBindings(context);
|
| +void InitializeDynamicGLBindingsEGL(GLContext* context) {
|
| + g_driver_egl.InitializeDynamicBindings(context);
|
| }
|
|
|
| void InitializeDebugGLBindingsEGL() {
|
|
|