| 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 "base/bind.h" | 5 #include "base/bind.h" |
| 6 #include "ui/gl/gl_bindings.h" | 6 #include "ui/gl/gl_bindings.h" |
| 7 #include "ui/gl/gl_context_stub_with_extensions.h" | 7 #include "ui/gl/gl_context_stub_with_extensions.h" |
| 8 #include "ui/gl/gl_egl_api_implementation.h" | 8 #include "ui/gl/gl_egl_api_implementation.h" |
| 9 #include "ui/gl/gl_gl_api_implementation.h" | 9 #include "ui/gl/gl_gl_api_implementation.h" |
| 10 #include "ui/gl/gl_implementation.h" | 10 #include "ui/gl/gl_implementation.h" |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 bool GetGLWindowSystemBindingInfo(GLWindowSystemBindingInfo* info) { | 113 bool GetGLWindowSystemBindingInfo(GLWindowSystemBindingInfo* info) { |
| 114 switch (GetGLImplementation()) { | 114 switch (GetGLImplementation()) { |
| 115 case kGLImplementationEGLGLES2: | 115 case kGLImplementationEGLGLES2: |
| 116 return GetGLWindowSystemBindingInfoEGL(info); | 116 return GetGLWindowSystemBindingInfoEGL(info); |
| 117 default: | 117 default: |
| 118 return false; | 118 return false; |
| 119 } | 119 } |
| 120 return false; | 120 return false; |
| 121 } | 121 } |
| 122 | 122 |
| 123 bool GetNativeLibraryNamesFromGLImplementation( |
| 124 GLImplementation implementation, |
| 125 std::vector<std::string>* required_libraries) { |
| 126 NOTIMPLEMENTED(); |
| 127 return false; |
| 128 } |
| 129 |
| 123 } // namespace gfx | 130 } // namespace gfx |
| OLD | NEW |