| 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 #ifndef UI_GL_GL_API_IMPLEMENTATION_H_ | 5 #ifndef UI_GL_GL_GL_API_IMPLEMENTATION_H_ |
| 6 #define UI_GL_GL_API_IMPLEMENTATION_H_ | 6 #define UI_GL_GL_GL_API_IMPLEMENTATION_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "ui/gl/gl_bindings.h" | 9 #include "ui/gl/gl_bindings.h" |
| 10 #include "ui/gl/gl_export.h" | 10 #include "ui/gl/gl_export.h" |
| 11 | 11 |
| 12 namespace gpu { | 12 namespace gpu { |
| 13 namespace gles2 { | 13 namespace gles2 { |
| 14 class GLES2Decoder; | 14 class GLES2Decoder; |
| 15 } | 15 } |
| 16 } | 16 } |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 | 87 |
| 88 // The current virtual context. | 88 // The current virtual context. |
| 89 GLContext* current_context_; | 89 GLContext* current_context_; |
| 90 | 90 |
| 91 // The supported extensions being advertised for this virtual context. | 91 // The supported extensions being advertised for this virtual context. |
| 92 std::string extensions_; | 92 std::string extensions_; |
| 93 }; | 93 }; |
| 94 | 94 |
| 95 } // namespace gfx | 95 } // namespace gfx |
| 96 | 96 |
| 97 #endif // UI_GL_GL_API_IMPLEMENTATION_H_ | 97 #endif // UI_GL_GL_GL_API_IMPLEMENTATION_H_ |
| OLD | NEW |