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" |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 | 69 |
70 void* MojoGLES2GetGLES2Interface(MojoGLES2Context context) { | 70 void* MojoGLES2GetGLES2Interface(MojoGLES2Context context) { |
71 return static_cast<GLES2Context*>(context)->interface(); | 71 return static_cast<GLES2Context*>(context)->interface(); |
72 } | 72 } |
73 | 73 |
74 void* MojoGLES2GetContextSupport(MojoGLES2Context context) { | 74 void* MojoGLES2GetContextSupport(MojoGLES2Context context) { |
75 return static_cast<GLES2Context*>(context)->context_support(); | 75 return static_cast<GLES2Context*>(context)->context_support(); |
76 } | 76 } |
77 | 77 |
78 #define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) \ | 78 #define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) \ |
79 ReturnType gl##Function PARAMETERS { \ | 79 ReturnType GL_APIENTRY gl##Function PARAMETERS { \ |
80 DCHECK(g_gpu_interface.Get().Get()); \ | 80 DCHECK(g_gpu_interface.Get().Get()); \ |
81 return g_gpu_interface.Get().Get()->Function ARGUMENTS; \ | 81 return g_gpu_interface.Get().Get()->Function ARGUMENTS; \ |
82 } | 82 } |
83 #include "mojo/public/c/gles2/gles2_call_visitor_autogen.h" | 83 #include "mojo/public/c/gles2/gles2_call_visitor_autogen.h" |
84 #include "mojo/public/c/gles2/gles2_call_visitor_chromium_copy_texture_autogen.h
" | 84 #include "mojo/public/c/gles2/gles2_call_visitor_chromium_copy_texture_autogen.h
" |
85 #include "mojo/public/c/gles2/gles2_call_visitor_chromium_image_autogen.h" | 85 #include "mojo/public/c/gles2/gles2_call_visitor_chromium_image_autogen.h" |
86 #include "mojo/public/c/gles2/gles2_call_visitor_chromium_miscellaneous_autogen.
h" | 86 #include "mojo/public/c/gles2/gles2_call_visitor_chromium_miscellaneous_autogen.
h" |
87 #include "mojo/public/c/gles2/gles2_call_visitor_chromium_pixel_transfer_buffer_
object_autogen.h" | 87 #include "mojo/public/c/gles2/gles2_call_visitor_chromium_pixel_transfer_buffer_
object_autogen.h" |
88 #include "mojo/public/c/gles2/gles2_call_visitor_chromium_sub_image_autogen.h" | 88 #include "mojo/public/c/gles2/gles2_call_visitor_chromium_sub_image_autogen.h" |
89 #include "mojo/public/c/gles2/gles2_call_visitor_chromium_sync_point_autogen.h" | 89 #include "mojo/public/c/gles2/gles2_call_visitor_chromium_sync_point_autogen.h" |
90 #include "mojo/public/c/gles2/gles2_call_visitor_chromium_texture_mailbox_autoge
n.h" | 90 #include "mojo/public/c/gles2/gles2_call_visitor_chromium_texture_mailbox_autoge
n.h" |
91 #include "mojo/public/c/gles2/gles2_call_visitor_occlusion_query_ext_autogen.h" | 91 #include "mojo/public/c/gles2/gles2_call_visitor_occlusion_query_ext_autogen.h" |
92 #undef VISIT_GL_CALL | 92 #undef VISIT_GL_CALL |
93 | 93 |
94 } // extern "C" | 94 } // extern "C" |
OLD | NEW |