| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // This file is auto-generated from | |
| 6 // gpu/command_buffer/build_gles2_cmd_buffer.py | |
| 7 // It's formatted by clang-format using chromium coding style: | |
| 8 // clang-format -i -style=chromium filename | |
| 9 // DO NOT EDIT! | |
| 10 | |
| 11 #ifndef MOJO_PUBLIC_PLATFORM_NATIVE_GLES2_IMPL_EXT_DEBUG_MARKER_THUNKS_H_ | |
| 12 #define MOJO_PUBLIC_PLATFORM_NATIVE_GLES2_IMPL_EXT_DEBUG_MARKER_THUNKS_H_ | |
| 13 | |
| 14 #include <stddef.h> | |
| 15 | |
| 16 #define GL_GLEXT_PROTOTYPES | |
| 17 #include <GLES2/gl2extmojo.h> | |
| 18 | |
| 19 // Specifies the frozen API for the EXT_debug_marker extension. | |
| 20 #pragma pack(push, 8) | |
| 21 struct MojoGLES2ImplEXTDebugMarkerThunks { | |
| 22 size_t size; // Should be set to sizeof(*this). | |
| 23 | |
| 24 #define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) \ | |
| 25 ReturnType(GL_APIENTRY* Function) PARAMETERS; | |
| 26 #include "mojo/public/platform/native/gles2/call_visitor_ext_debug_marker_autoge
n.h" | |
| 27 #undef VISIT_GL_CALL | |
| 28 }; | |
| 29 #pragma pack(pop) | |
| 30 | |
| 31 #ifdef __cplusplus | |
| 32 // Intended to be called from the embedder to get the embedder's implementation | |
| 33 // of ext_debug_marker. | |
| 34 inline MojoGLES2ImplEXTDebugMarkerThunks | |
| 35 MojoMakeGLES2ImplEXTDebugMarkerThunks() { | |
| 36 MojoGLES2ImplEXTDebugMarkerThunks gles2_impl_ext_debug_marker_thunks = { | |
| 37 sizeof(MojoGLES2ImplEXTDebugMarkerThunks), | |
| 38 #define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) gl##Function, | |
| 39 #include "mojo/public/platform/native/gles2/call_visitor_ext_debug_marker_autoge
n.h" | |
| 40 #undef VISIT_GL_CALL | |
| 41 }; | |
| 42 | |
| 43 return gles2_impl_ext_debug_marker_thunks; | |
| 44 } | |
| 45 #endif // __cplusplus | |
| 46 | |
| 47 // Use this type for the function found by dynamically discovering it in | |
| 48 // a DSO linked with mojo_system. | |
| 49 // The contents of |gles2_impl_ext_debug_marker_thunks| are copied. | |
| 50 typedef size_t (*MojoSetGLES2ImplEXTDebugMarkerThunksFn)( | |
| 51 const struct MojoGLES2ImplEXTDebugMarkerThunks* thunks); | |
| 52 | |
| 53 #endif // MOJO_PUBLIC_PLATFORM_NATIVE_GLES2_IMPL_EXT_DEBUG_MARKER_THUNKS_H_ | |
| OLD | NEW |