]> git.cworth.org Git - apitrace/blob - retrace/glretrace_egl.cpp
27c5bb8e39531a8534f63542e76a2cfaa392e400
[apitrace] / retrace / glretrace_egl.cpp
1 /**************************************************************************
2  *
3  * Copyright 2011 LunarG, Inc.
4  * All Rights Reserved.
5  *
6  * Based on glretrace_glx.cpp, which has
7  *
8  *   Copyright 2011 Jose Fonseca
9  *
10  * Permission is hereby granted, free of charge, to any person obtaining a copy
11  * of this software and associated documentation files (the "Software"), to deal
12  * in the Software without restriction, including without limitation the rights
13  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14  * copies of the Software, and to permit persons to whom the Software is
15  * furnished to do so, subject to the following conditions:
16  *
17  * The above copyright notice and this permission notice shall be included in
18  * all copies or substantial portions of the Software.
19  *
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26  * THE SOFTWARE.
27  *
28  **************************************************************************/
29
30
31 #include "glproc.hpp"
32 #include "retrace.hpp"
33 #include "glretrace.hpp"
34 #include "os.hpp"
35 #include "eglsize.hpp"
36
37 #ifndef EGL_OPENGL_ES_API
38 #define EGL_OPENGL_ES_API               0x30A0
39 #define EGL_OPENVG_API                  0x30A1
40 #define EGL_OPENGL_API                  0x30A2
41 #define EGL_CONTEXT_CLIENT_VERSION      0x3098
42 #endif
43
44
45 using namespace glretrace;
46
47
48 typedef std::map<unsigned long long, glws::Drawable *> DrawableMap;
49 typedef std::map<unsigned long long, Context *> ContextMap;
50 typedef std::map<unsigned long long, glws::Profile> ProfileMap;
51 static DrawableMap drawable_map;
52 static ContextMap context_map;
53 static ProfileMap profile_map;
54
55 static unsigned int current_api = EGL_OPENGL_ES_API;
56 static glws::Profile last_profile = glws::PROFILE_COMPAT;
57
58 static void
59 createDrawable(unsigned long long orig_config, unsigned long long orig_surface);
60
61 static glws::Drawable *
62 getDrawable(unsigned long long surface_ptr) {
63     if (surface_ptr == 0) {
64         return NULL;
65     }
66
67     DrawableMap::const_iterator it;
68     it = drawable_map.find(surface_ptr);
69     if (it == drawable_map.end()) {
70         // In Fennec we get the egl window surface from Java which isn't
71         // traced, so just create a drawable if it doesn't exist in here
72         createDrawable(0, surface_ptr);
73         it = drawable_map.find(surface_ptr);
74         assert(it != drawable_map.end());
75     }
76
77     return (it != drawable_map.end()) ? it->second : NULL;
78 }
79
80 static Context *
81 getContext(unsigned long long context_ptr) {
82     if (context_ptr == 0) {
83         return NULL;
84     }
85
86     ContextMap::const_iterator it;
87     it = context_map.find(context_ptr);
88
89     return (it != context_map.end()) ? it->second : NULL;
90 }
91
92 static void createDrawable(unsigned long long orig_config, unsigned long long orig_surface)
93 {
94     ProfileMap::iterator it = profile_map.find(orig_config);
95     glws::Profile profile;
96
97     // If the requested config is associated with a profile, use that
98     // profile. Otherwise, assume that the last used profile is what
99     // the user wants.
100     if (it != profile_map.end()) {
101         profile = it->second;
102     } else {
103         profile = last_profile;
104     }
105
106     glws::Drawable *drawable = glretrace::createDrawable(profile);
107     drawable_map[orig_surface] = drawable;
108 }
109
110 static void retrace_eglCreateWindowSurface(trace::Call &call) {
111     unsigned long long orig_config = call.arg(1).toUIntPtr();
112     unsigned long long orig_surface = call.ret->toUIntPtr();
113     createDrawable(orig_config, orig_surface);
114 }
115
116 static void retrace_eglCreatePbufferSurface(trace::Call &call) {
117     unsigned long long orig_config = call.arg(1).toUIntPtr();
118     unsigned long long orig_surface = call.ret->toUIntPtr();
119     createDrawable(orig_config, orig_surface);
120     // TODO: Respect the pbuffer dimensions too
121 }
122
123 static void retrace_eglDestroySurface(trace::Call &call) {
124     unsigned long long orig_surface = call.arg(1).toUIntPtr();
125
126     DrawableMap::iterator it;
127     it = drawable_map.find(orig_surface);
128
129     if (it != drawable_map.end()) {
130         glretrace::Context *currentContext = glretrace::getCurrentContext();
131         if (!currentContext || it->second != currentContext->drawable) {
132             // TODO: reference count
133             delete it->second;
134         }
135         drawable_map.erase(it);
136     }
137 }
138
139 static void retrace_eglBindAPI(trace::Call &call) {
140     current_api = call.arg(0).toUInt();
141     eglBindAPI(current_api);
142 }
143
144 static void retrace_eglCreateContext(trace::Call &call) {
145     unsigned long long orig_context = call.ret->toUIntPtr();
146     unsigned long long orig_config = call.arg(1).toUIntPtr();
147     Context *share_context = getContext(call.arg(2).toUIntPtr());
148     trace::Array *attrib_array = dynamic_cast<trace::Array *>(&call.arg(3));
149     glws::Profile profile;
150
151     switch (current_api) {
152     case EGL_OPENGL_API:
153         profile = glws::PROFILE_COMPAT;
154         break;
155     case EGL_OPENGL_ES_API:
156     default:
157         profile = glws::PROFILE_ES1;
158         if (attrib_array) {
159             for (int i = 0; i < attrib_array->values.size(); i += 2) {
160                 int v = attrib_array->values[i]->toSInt();
161                 if (v == EGL_CONTEXT_CLIENT_VERSION) {
162                     v = attrib_array->values[i + 1]->toSInt();
163                     if (v == 2)
164                         profile = glws::PROFILE_ES2;
165                     break;
166                 }
167             }
168         }
169         break;
170     }
171
172
173     Context *context = glretrace::createContext(share_context, profile);
174     if (!context) {
175         const char *name;
176         switch (profile) {
177         case glws::PROFILE_COMPAT:
178             name = "OpenGL";
179             break;
180         case glws::PROFILE_ES1:
181             name = "OpenGL ES 1.1";
182             break;
183         case glws::PROFILE_ES2:
184             name = "OpenGL ES 2.0";
185             break;
186         default:
187             name = "unknown";
188             break;
189         }
190
191         retrace::warning(call) << "Failed to create " << name << " context.\n";
192         exit(1);
193     }
194
195     context_map[orig_context] = context;
196     profile_map[orig_config] = profile;
197     last_profile = profile;
198 }
199
200 static void retrace_eglDestroyContext(trace::Call &call) {
201     unsigned long long orig_context = call.arg(1).toUIntPtr();
202
203     ContextMap::iterator it;
204     it = context_map.find(orig_context);
205
206     if (it != context_map.end()) {
207         glretrace::Context *currentContext = glretrace::getCurrentContext();
208         if (it->second != currentContext) {
209             // TODO: reference count
210             delete it->second;
211         }
212         context_map.erase(it);
213     }
214 }
215
216 static void retrace_eglMakeCurrent(trace::Call &call) {
217     glws::Drawable *new_drawable = getDrawable(call.arg(1).toUIntPtr());
218     Context *new_context = getContext(call.arg(3).toUIntPtr());
219
220     glretrace::makeCurrent(call, new_drawable, new_context);
221 }
222
223
224 static void retrace_eglSwapBuffers(trace::Call &call) {
225     glws::Drawable *drawable = getDrawable(call.arg(1).toUIntPtr());
226
227     frame_complete(call);
228
229     if (retrace::doubleBuffer) {
230         if (drawable) {
231             drawable->swapBuffers();
232         }
233     } else {
234         glFlush();
235     }
236 }
237
238 const retrace::Entry glretrace::egl_callbacks[] = {
239     {"eglGetError", &retrace::ignore},
240     {"eglGetDisplay", &retrace::ignore},
241     {"eglInitialize", &retrace::ignore},
242     {"eglTerminate", &retrace::ignore},
243     {"eglQueryString", &retrace::ignore},
244     {"eglGetConfigs", &retrace::ignore},
245     {"eglChooseConfig", &retrace::ignore},
246     {"eglGetConfigAttrib", &retrace::ignore},
247     {"eglCreateWindowSurface", &retrace_eglCreateWindowSurface},
248     {"eglCreatePbufferSurface", &retrace_eglCreatePbufferSurface},
249     //{"eglCreatePixmapSurface", &retrace::ignore},
250     {"eglDestroySurface", &retrace_eglDestroySurface},
251     {"eglQuerySurface", &retrace::ignore},
252     {"eglBindAPI", &retrace_eglBindAPI},
253     {"eglQueryAPI", &retrace::ignore},
254     //{"eglWaitClient", &retrace::ignore},
255     //{"eglReleaseThread", &retrace::ignore},
256     //{"eglCreatePbufferFromClientBuffer", &retrace::ignore},
257     //{"eglSurfaceAttrib", &retrace::ignore},
258     //{"eglBindTexImage", &retrace::ignore},
259     //{"eglReleaseTexImage", &retrace::ignore},
260     {"eglSwapInterval", &retrace::ignore},
261     {"eglCreateContext", &retrace_eglCreateContext},
262     {"eglDestroyContext", &retrace_eglDestroyContext},
263     {"eglMakeCurrent", &retrace_eglMakeCurrent},
264     {"eglGetCurrentContext", &retrace::ignore},
265     {"eglGetCurrentSurface", &retrace::ignore},
266     {"eglGetCurrentDisplay", &retrace::ignore},
267     {"eglQueryContext", &retrace::ignore},
268     {"eglWaitGL", &retrace::ignore},
269     {"eglWaitNative", &retrace::ignore},
270     {"eglSwapBuffers", &retrace_eglSwapBuffers},
271     //{"eglCopyBuffers", &retrace::ignore},
272     {"eglGetProcAddress", &retrace::ignore},
273     {"eglCreateImageKHR", &retrace::ignore},
274     {"eglDestroyImageKHR", &retrace::ignore},
275     {"glEGLImageTargetTexture2DOES", &retrace::ignore},
276     {NULL, NULL},
277 };