Fix WindowAndroid leak in Android WebView
[chromium-blink-merge.git] / ui / gl / gl_implementation_ozone.cc
blob2a85720da5f182d970162f271601c27fe7e8f43c
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
3 // found in the LICENSE file.
5 #include "base/bind.h"
6 #include "ui/gl/gl_bindings.h"
7 #include "ui/gl/gl_context_stub_with_extensions.h"
8 #include "ui/gl/gl_egl_api_implementation.h"
9 #include "ui/gl/gl_gl_api_implementation.h"
10 #include "ui/gl/gl_implementation.h"
11 #include "ui/gl/gl_implementation_osmesa.h"
12 #include "ui/gl/gl_osmesa_api_implementation.h"
13 #include "ui/ozone/public/ozone_platform.h"
14 #include "ui/ozone/public/surface_factory_ozone.h"
16 namespace gfx {
18 namespace {
20 void GL_BINDING_CALL MarshalClearDepthToClearDepthf(GLclampd depth) {
21 glClearDepthf(static_cast<GLclampf>(depth));
24 void GL_BINDING_CALL MarshalDepthRangeToDepthRangef(GLclampd z_near,
25 GLclampd z_far) {
26 glDepthRangef(static_cast<GLclampf>(z_near), static_cast<GLclampf>(z_far));
29 } // namespace
31 void GetAllowedGLImplementations(std::vector<GLImplementation>* impls) {
32 impls->push_back(kGLImplementationEGLGLES2);
33 impls->push_back(kGLImplementationOSMesaGL);
36 bool InitializeStaticGLBindings(GLImplementation implementation) {
37 // Prevent reinitialization with a different implementation. Once the gpu
38 // unit tests have initialized with kGLImplementationMock, we don't want to
39 // later switch to another GL implementation.
40 DCHECK_EQ(kGLImplementationNone, GetGLImplementation());
41 ui::OzonePlatform::InitializeForGPU();
43 switch (implementation) {
44 case kGLImplementationOSMesaGL:
45 return InitializeStaticGLBindingsOSMesaGL();
46 case kGLImplementationEGLGLES2:
47 if (!ui::SurfaceFactoryOzone::GetInstance()->LoadEGLGLES2Bindings(
48 base::Bind(&AddGLNativeLibrary),
49 base::Bind(&SetGLGetProcAddressProc)))
50 return false;
51 SetGLImplementation(kGLImplementationEGLGLES2);
52 InitializeStaticGLBindingsGL();
53 InitializeStaticGLBindingsEGL();
55 // These two functions take single precision float rather than double
56 // precision float parameters in GLES.
57 ::gfx::g_driver_gl.fn.glClearDepthFn = MarshalClearDepthToClearDepthf;
58 ::gfx::g_driver_gl.fn.glDepthRangeFn = MarshalDepthRangeToDepthRangef;
59 break;
60 case kGLImplementationMockGL: {
61 SetGLImplementation(kGLImplementationMockGL);
62 InitializeStaticGLBindingsGL();
63 break;
65 default:
66 NOTIMPLEMENTED()
67 << "Unsupported GL type for Ozone surface implementation";
68 return false;
71 return true;
74 bool InitializeDynamicGLBindings(GLImplementation implementation,
75 GLContext* context) {
76 switch (implementation) {
77 case kGLImplementationOSMesaGL:
78 case kGLImplementationEGLGLES2:
79 InitializeDynamicGLBindingsGL(context);
80 break;
81 case kGLImplementationMockGL:
82 if (!context) {
83 scoped_refptr<GLContextStubWithExtensions> mock_context(
84 new GLContextStubWithExtensions());
85 mock_context->SetGLVersionString("3.0");
86 InitializeDynamicGLBindingsGL(mock_context.get());
87 } else
88 InitializeDynamicGLBindingsGL(context);
89 break;
90 default:
91 return false;
94 return true;
97 void InitializeDebugGLBindings() {
100 void ClearGLBindings() {
101 ClearGLBindingsEGL();
102 ClearGLBindingsGL();
103 SetGLImplementation(kGLImplementationNone);
104 UnloadGLNativeLibraries();
107 bool GetGLWindowSystemBindingInfo(GLWindowSystemBindingInfo* info) {
108 switch (GetGLImplementation()) {
109 case kGLImplementationEGLGLES2:
110 return GetGLWindowSystemBindingInfoEGL(info);
111 default:
112 return false;
114 return false;
117 } // namespace gfx