diff options
Diffstat (limited to 'recipes/opengldummy/files/egl.cpp')
-rw-r--r-- | recipes/opengldummy/files/egl.cpp | 178 |
1 files changed, 178 insertions, 0 deletions
diff --git a/recipes/opengldummy/files/egl.cpp b/recipes/opengldummy/files/egl.cpp new file mode 100644 index 0000000..7c28b41 --- /dev/null +++ b/recipes/opengldummy/files/egl.cpp | |||
@@ -0,0 +1,178 @@ | |||
1 | // Automatically generated file, do not edit. | ||
2 | |||
3 | #include <EGL/egl.h> | ||
4 | |||
5 | extern "C" { | ||
6 | |||
7 | EGLAPI EGLBoolean EGLAPIENTRY eglChooseConfig(EGLDisplay dpy, const EGLint * attrib_list, EGLConfig* configs, EGLint config_size, EGLint* num_config) | ||
8 | { | ||
9 | return 0; | ||
10 | } | ||
11 | |||
12 | EGLAPI EGLBoolean EGLAPIENTRY eglCopyBuffers(EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target) | ||
13 | { | ||
14 | return 0; | ||
15 | } | ||
16 | |||
17 | EGLAPI EGLContext EGLAPIENTRY eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint * attrib_list) | ||
18 | { | ||
19 | return 0; | ||
20 | } | ||
21 | |||
22 | EGLAPI EGLSurface EGLAPIENTRY eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint * attrib_list) | ||
23 | { | ||
24 | return 0; | ||
25 | } | ||
26 | |||
27 | EGLAPI EGLSurface EGLAPIENTRY eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint * attrib_list) | ||
28 | { | ||
29 | return 0; | ||
30 | } | ||
31 | |||
32 | EGLAPI EGLSurface EGLAPIENTRY eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint * attrib_list) | ||
33 | { | ||
34 | return 0; | ||
35 | } | ||
36 | |||
37 | EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext(EGLDisplay dpy, EGLContext ctx) | ||
38 | { | ||
39 | return 0; | ||
40 | } | ||
41 | |||
42 | EGLAPI EGLBoolean EGLAPIENTRY eglDestroySurface(EGLDisplay dpy, EGLSurface surface) | ||
43 | { | ||
44 | return 0; | ||
45 | } | ||
46 | |||
47 | EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint* value) | ||
48 | { | ||
49 | return 0; | ||
50 | } | ||
51 | |||
52 | EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigs(EGLDisplay dpy, EGLConfig* configs, EGLint config_size, EGLint* num_config) | ||
53 | { | ||
54 | return 0; | ||
55 | } | ||
56 | |||
57 | EGLAPI EGLDisplay EGLAPIENTRY eglGetCurrentDisplay() | ||
58 | { | ||
59 | return 0; | ||
60 | } | ||
61 | |||
62 | EGLAPI EGLSurface EGLAPIENTRY eglGetCurrentSurface(EGLint readdraw) | ||
63 | { | ||
64 | return 0; | ||
65 | } | ||
66 | |||
67 | EGLAPI EGLDisplay EGLAPIENTRY eglGetDisplay(EGLNativeDisplayType display_id) | ||
68 | { | ||
69 | return 0; | ||
70 | } | ||
71 | |||
72 | EGLAPI EGLint EGLAPIENTRY eglGetError() | ||
73 | { | ||
74 | return 0; | ||
75 | } | ||
76 | |||
77 | EGLAPI __eglMustCastToProperFunctionPointerType EGLAPIENTRY eglGetProcAddress(const char * procname) | ||
78 | { | ||
79 | return 0; | ||
80 | } | ||
81 | |||
82 | EGLAPI EGLBoolean EGLAPIENTRY eglInitialize(EGLDisplay dpy, EGLint* major, EGLint* minor) | ||
83 | { | ||
84 | return 0; | ||
85 | } | ||
86 | |||
87 | EGLAPI EGLBoolean EGLAPIENTRY eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx) | ||
88 | { | ||
89 | return 0; | ||
90 | } | ||
91 | |||
92 | EGLAPI EGLBoolean EGLAPIENTRY eglQueryContext(EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint* value) | ||
93 | { | ||
94 | return 0; | ||
95 | } | ||
96 | |||
97 | EGLAPI const char * EGLAPIENTRY eglQueryString(EGLDisplay dpy, EGLint name) | ||
98 | { | ||
99 | return 0; | ||
100 | } | ||
101 | |||
102 | EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurface(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint* value) | ||
103 | { | ||
104 | return 0; | ||
105 | } | ||
106 | |||
107 | EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffers(EGLDisplay dpy, EGLSurface surface) | ||
108 | { | ||
109 | return 0; | ||
110 | } | ||
111 | |||
112 | EGLAPI EGLBoolean EGLAPIENTRY eglTerminate(EGLDisplay dpy) | ||
113 | { | ||
114 | return 0; | ||
115 | } | ||
116 | |||
117 | EGLAPI EGLBoolean EGLAPIENTRY eglWaitGL() | ||
118 | { | ||
119 | return 0; | ||
120 | } | ||
121 | |||
122 | EGLAPI EGLBoolean EGLAPIENTRY eglWaitNative(EGLint engine) | ||
123 | { | ||
124 | return 0; | ||
125 | } | ||
126 | |||
127 | EGLAPI EGLBoolean EGLAPIENTRY eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer) | ||
128 | { | ||
129 | return 0; | ||
130 | } | ||
131 | |||
132 | EGLAPI EGLBoolean EGLAPIENTRY eglReleaseTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer) | ||
133 | { | ||
134 | return 0; | ||
135 | } | ||
136 | |||
137 | EGLAPI EGLBoolean EGLAPIENTRY eglSurfaceAttrib(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value) | ||
138 | { | ||
139 | return 0; | ||
140 | } | ||
141 | |||
142 | EGLAPI EGLBoolean EGLAPIENTRY eglSwapInterval(EGLDisplay dpy, EGLint interval) | ||
143 | { | ||
144 | return 0; | ||
145 | } | ||
146 | |||
147 | EGLAPI EGLBoolean EGLAPIENTRY eglBindAPI(EGLenum api) | ||
148 | { | ||
149 | return 0; | ||
150 | } | ||
151 | |||
152 | EGLAPI EGLSurface EGLAPIENTRY eglCreatePbufferFromClientBuffer(EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint * attrib_list) | ||
153 | { | ||
154 | return 0; | ||
155 | } | ||
156 | |||
157 | EGLAPI EGLenum EGLAPIENTRY eglQueryAPI() | ||
158 | { | ||
159 | return 0; | ||
160 | } | ||
161 | |||
162 | EGLAPI EGLBoolean EGLAPIENTRY eglReleaseThread() | ||
163 | { | ||
164 | return 0; | ||
165 | } | ||
166 | |||
167 | EGLAPI EGLBoolean EGLAPIENTRY eglWaitClient() | ||
168 | { | ||
169 | return 0; | ||
170 | } | ||
171 | |||
172 | EGLAPI EGLContext EGLAPIENTRY eglGetCurrentContext() | ||
173 | { | ||
174 | return 0; | ||
175 | } | ||
176 | |||
177 | } // extern "C" | ||
178 | |||