| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "mojo/public/c/gles2/gles2.h" | 5 #include "mojo/public/c/gles2/gles2.h" |
| 6 | 6 |
| 7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
| 8 #include "base/threading/thread_local.h" | 8 #include "base/threading/thread_local.h" |
| 9 #include "gpu/GLES2/gl2extchromium.h" | 9 #include "gpu/GLES2/gl2extchromium.h" |
| 10 #include "gpu/command_buffer/client/gles2_interface.h" | 10 #include "gpu/command_buffer/client/gles2_interface.h" |
| 11 #include "mojo/gles2/gles2_context.h" | 11 #include "mojo/gles2/gles2_context.h" |
| 12 #include "mojo/gles2/gles2_impl_export.h" | |
| 13 | 12 |
| 14 using mojo::gles2::GLES2Context; | 13 using mojo::gles2::GLES2Context; |
| 15 | 14 |
| 16 namespace { | 15 namespace { |
| 17 | 16 |
| 18 base::LazyInstance<base::ThreadLocalPointer<gpu::gles2::GLES2Interface> >::Leaky | 17 base::LazyInstance<base::ThreadLocalPointer<gpu::gles2::GLES2Interface> >::Leaky |
| 19 g_gpu_interface; | 18 g_gpu_interface; |
| 20 | 19 |
| 21 } // namespace | 20 } // namespace |
| 22 | 21 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 ReturnType gl##Function PARAMETERS { \ | 64 ReturnType gl##Function PARAMETERS { \ |
| 66 DCHECK(g_gpu_interface.Get().Get()); \ | 65 DCHECK(g_gpu_interface.Get().Get()); \ |
| 67 return g_gpu_interface.Get().Get()->Function ARGUMENTS; \ | 66 return g_gpu_interface.Get().Get()->Function ARGUMENTS; \ |
| 68 } | 67 } |
| 69 #include "mojo/public/c/gles2/gles2_call_visitor_autogen.h" | 68 #include "mojo/public/c/gles2/gles2_call_visitor_autogen.h" |
| 70 #include "mojo/public/c/gles2/gles2_call_visitor_chromium_sync_point_autogen.h" | 69 #include "mojo/public/c/gles2/gles2_call_visitor_chromium_sync_point_autogen.h" |
| 71 #include "mojo/public/c/gles2/gles2_call_visitor_chromium_texture_mailbox_autoge
n.h" | 70 #include "mojo/public/c/gles2/gles2_call_visitor_chromium_texture_mailbox_autoge
n.h" |
| 72 #undef VISIT_GL_CALL | 71 #undef VISIT_GL_CALL |
| 73 | 72 |
| 74 } // extern "C" | 73 } // extern "C" |
| OLD | NEW |