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

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

Issue 2136553002: Remove GetPlatformDefaultEGLNativeDisplay() function. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Back to original. Created 4 years, 5 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_bindings_autogen_egl.cc ('k') | ui/gl/gl_surface_egl.h » ('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 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/strings/string_split.h" 8 #include "base/strings/string_split.h"
9 #include "base/strings/string_util.h" 9 #include "base/strings/string_util.h"
10 #include "ui/gl/gl_context.h" 10 #include "ui/gl/gl_context.h"
(...skipping 16 matching lines...) Expand all
27 27
28 RealEGLApi* g_real_egl; 28 RealEGLApi* g_real_egl;
29 29
30 void InitializeStaticGLBindingsEGL() { 30 void InitializeStaticGLBindingsEGL() {
31 g_driver_egl.InitializeStaticBindings(); 31 g_driver_egl.InitializeStaticBindings();
32 if (!g_real_egl) { 32 if (!g_real_egl) {
33 g_real_egl = new RealEGLApi(); 33 g_real_egl = new RealEGLApi();
34 } 34 }
35 g_real_egl->Initialize(&g_driver_egl); 35 g_real_egl->Initialize(&g_driver_egl);
36 g_current_egl_context = g_real_egl; 36 g_current_egl_context = g_real_egl;
37 g_driver_egl.InitializeExtensionBindings();
38 37
39 // These two functions take single precision float rather than double 38 // These two functions take single precision float rather than double
40 // precision float parameters in GLES. 39 // precision float parameters in GLES.
41 ::gl::g_driver_gl.fn.glClearDepthFn = MarshalClearDepthToClearDepthf; 40 ::gl::g_driver_gl.fn.glClearDepthFn = MarshalClearDepthToClearDepthf;
42 ::gl::g_driver_gl.fn.glDepthRangeFn = MarshalDepthRangeToDepthRangef; 41 ::gl::g_driver_gl.fn.glDepthRangeFn = MarshalDepthRangeToDepthRangef;
43 } 42 }
44 43
45 void InitializeDebugGLBindingsEGL() { 44 void InitializeDebugGLBindingsEGL() {
46 g_driver_egl.InitializeDebugBindings(); 45 g_driver_egl.InitializeDebugBindings();
47 } 46 }
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 if (vendor) 122 if (vendor)
124 info->vendor = vendor; 123 info->vendor = vendor;
125 if (version) 124 if (version)
126 info->version = version; 125 info->version = version;
127 if (extensions) 126 if (extensions)
128 info->extensions = extensions; 127 info->extensions = extensions;
129 return true; 128 return true;
130 } 129 }
131 130
132 } // namespace gl 131 } // namespace gl
OLDNEW
« no previous file with comments | « ui/gl/gl_bindings_autogen_egl.cc ('k') | ui/gl/gl_surface_egl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698