Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Side by Side Diff: mojo/public/platform/native/mgl_thunks.h

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 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 THIRD_PARTY_MOJO_SRC_MOJO_PUBLIC_PLATFORM_NATIVE_MGL_THUNKS_H_ 5 #ifndef MOJO_PUBLIC_PLATFORM_NATIVE_MGL_THUNKS_H_
6 #define THIRD_PARTY_MOJO_SRC_MOJO_PUBLIC_PLATFORM_NATIVE_MGL_THUNKS_H_ 6 #define MOJO_PUBLIC_PLATFORM_NATIVE_MGL_THUNKS_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include "third_party/mojo/src/mojo/public/c/gpu/MGL/mgl.h" 10 #include "mojo/public/c/gpu/MGL/mgl.h"
11 11
12 // Structure used to bind the interface which manipulates MGL contexts to a 12 // Structure used to bind the interface which manipulates MGL contexts to a
13 // DSO to theose of the embedder. 13 // DSO to theose of the embedder.
14 // 14 //
15 // This is the ABI between the embedder and the DSO. It can only have new 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. 16 // functions added to the end. No other changes are supported.
17 #pragma pack(push, 8) 17 #pragma pack(push, 8)
18 struct MGLThunks { 18 struct MGLThunks {
19 size_t size; // Should be set to sizeof(MGLThunks). 19 size_t size; // Should be set to sizeof(MGLThunks).
20 20
(...skipping 25 matching lines...) Expand all
46 46
47 // Use this type for the function found by dynamically discovering it in 47 // Use this type for the function found by dynamically discovering it in
48 // a DSO linked with mojo_system. For example: 48 // a DSO linked with mojo_system. For example:
49 // MojoSetMGLThunksFn mojo_set_gles2_thunks_fn = 49 // MojoSetMGLThunksFn mojo_set_gles2_thunks_fn =
50 // reinterpret_cast<MojoSetMGLThunksFn>( 50 // reinterpret_cast<MojoSetMGLThunksFn>(
51 // app_library.GetFunctionPointer("MojoSetMGLThunks")); 51 // app_library.GetFunctionPointer("MojoSetMGLThunks"));
52 // The expected size of |mgl_thunks| is returned. 52 // The expected size of |mgl_thunks| is returned.
53 // The contents of |mgl_thunks| are copied. 53 // The contents of |mgl_thunks| are copied.
54 typedef size_t (*MojoSetMGLThunksFn)(const struct MGLThunks* mgl_thunks); 54 typedef size_t (*MojoSetMGLThunksFn)(const struct MGLThunks* mgl_thunks);
55 55
56 #endif // THIRD_PARTY_MOJO_SRC_MOJO_PUBLIC_PLATFORM_NATIVE_MGL_THUNKS_H_ 56 #endif // MOJO_PUBLIC_PLATFORM_NATIVE_MGL_THUNKS_H_
OLDNEW
« no previous file with comments | « mojo/public/platform/native/mgl_onscreen_thunks.c ('k') | mojo/public/platform/native/mgl_thunks.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698