OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 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 #ifndef MOJO_PUBLIC_PLATFORM_NATIVE_MGL_ONSCREEN_THUNKS_H_ |
| 6 #define MOJO_PUBLIC_PLATFORM_NATIVE_MGL_ONSCREEN_THUNKS_H_ |
| 7 |
| 8 #include <stddef.h> |
| 9 |
| 10 #include "mojo/public/c/gpu/MGL/mgl_onscreen.h" |
| 11 |
| 12 // Structure used to bind the interface which manipulates MGL contexts to a |
| 13 // DSO to theose of the embedder. |
| 14 // |
| 15 // This is the ABI between the embedder and the DSO. It can only have new |
| 16 // functions added to the end. No other changes are supported. |
| 17 #pragma pack(push, 8) |
| 18 struct MGLOnscreenThunks { |
| 19 size_t size; // Should be set to sizeof(MojoMGLOnscreenThunks). |
| 20 |
| 21 void (*MGLResizeSurface)(uint32_t width, uint32_t height); |
| 22 void (*MGLSwapBuffers)(void); |
| 23 }; |
| 24 #pragma pack(pop) |
| 25 |
| 26 // Intended to be called from the embedder. Returns an object initialized to |
| 27 // contain pointers to each of the embedder's MGLOnscreenThunks functions. |
| 28 inline struct MGLOnscreenThunks MojoMakeMGLOnscreenThunks() { |
| 29 struct MGLOnscreenThunks mgl_onscreen_thunks = { |
| 30 sizeof(struct MGLOnscreenThunks), MGLResizeSurface, MGLSwapBuffers, |
| 31 }; |
| 32 |
| 33 return mgl_onscreen_thunks; |
| 34 } |
| 35 |
| 36 // Use this type for the function found by dynamically discovering it in |
| 37 // a DSO linked with mojo_system. For example: |
| 38 // MojoSetMGLOnscreenThunksFn mojo_set_gles2_thunks_fn = |
| 39 // reinterpret_cast<MojoSetMGLOnscreenThunksFn>( |
| 40 // app_library.GetFunctionPointer("MojoSetMGLOnscreenThunks")); |
| 41 // The expected size of |mgl_thunks| is returned. |
| 42 // The contents of |mgl_thunks| are copied. |
| 43 typedef size_t (*MojoSetMGLOnscreenThunksFn)( |
| 44 const struct MGLOnscreenThunks* mgl_thunks); |
| 45 |
| 46 #endif // MOJO_PUBLIC_PLATFORM_NATIVE_MGL_ONSCREEN_THUNKS_H_ |
OLD | NEW |