]> git.cworth.org Git - apitrace/blob - glretrace_egl.cpp
Make eglretrace.cpp depend on gles api spec
[apitrace] / 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
36 #ifndef EGL_OPENGL_ES_API
37 #define EGL_OPENGL_ES_API               0x30A0
38 #define EGL_OPENVG_API                  0x30A1
39 #define EGL_OPENGL_API                  0x30A2
40 #define EGL_CONTEXT_CLIENT_VERSION      0x3098
41 #endif
42
43
44 using namespace glretrace;
45
46
47 typedef std::map<unsigned long long, glws::Drawable *> DrawableMap;
48 typedef std::map<unsigned long long, glws::Context *> ContextMap;
49 typedef std::map<unsigned long long, glws::Profile> ProfileMap;
50 static DrawableMap drawable_map;
51 static ContextMap context_map;
52 static ProfileMap profile_map;
53
54 static unsigned int current_api = EGL_OPENGL_ES_API;
55 static glws::Profile last_profile = glws::PROFILE_COMPAT;
56
57 static glws::Drawable *
58 getDrawable(unsigned long long surface_ptr) {
59     if (surface_ptr == 0) {
60         return NULL;
61     }
62
63     DrawableMap::const_iterator it;
64     it = drawable_map.find(surface_ptr);
65
66     return (it != drawable_map.end()) ? it->second : NULL;
67 }
68
69 static glws::Context *
70 getContext(unsigned long long context_ptr) {
71     if (context_ptr == 0) {
72         return NULL;
73     }
74
75     ContextMap::const_iterator it;
76     it = context_map.find(context_ptr);
77
78     return (it != context_map.end()) ? it->second : NULL;
79 }
80
81 static void retrace_eglCreateWindowSurface(trace::Call &call) {
82     unsigned long long orig_surface = call.ret->toUIntPtr();
83     unsigned long long orig_config = call.arg(1).toUIntPtr();
84     ProfileMap::iterator it = profile_map.find(orig_config);
85     glws::Profile profile;
86
87     // If the requested config is associated with a profile, use that
88     // profile. Otherwise, assume that the last used profile is what
89     // the user wants.
90     if (it != profile_map.end()) {
91         profile = it->second;
92     } else {
93         profile = last_profile;
94     }
95
96     glws::Drawable *drawable = glws::createDrawable(glretrace::visual[profile]);
97     drawable_map[orig_surface] = drawable;
98 }
99
100 static void retrace_eglDestroySurface(trace::Call &call) {
101     unsigned long long orig_surface = call.arg(1).toUIntPtr();
102
103     DrawableMap::iterator it;
104     it = drawable_map.find(orig_surface);
105
106     if (it != drawable_map.end()) {
107         delete it->second;
108         drawable_map.erase(it);
109     }
110 }
111
112 static void retrace_eglBindAPI(trace::Call &call) {
113     current_api = call.arg(0).toUInt();
114 }
115
116 static void retrace_eglCreateContext(trace::Call &call) {
117     unsigned long long orig_context = call.ret->toUIntPtr();
118     unsigned long long orig_config = call.arg(1).toUIntPtr();
119     glws::Context *share_context = getContext(call.arg(2).toUIntPtr());
120     trace::Array *attrib_array = dynamic_cast<trace::Array *>(&call.arg(3));
121     glws::Profile profile;
122
123     switch (current_api) {
124     case EGL_OPENGL_API:
125         profile = glws::PROFILE_COMPAT;
126         break;
127     case EGL_OPENGL_ES_API:
128     default:
129         profile = glws::PROFILE_ES1;
130         if (attrib_array) {
131             for (int i = 0; i < attrib_array->values.size(); i += 2) {
132                 int v = attrib_array->values[i]->toSInt();
133                 if (v == EGL_CONTEXT_CLIENT_VERSION) {
134                     v = attrib_array->values[i + 1]->toSInt();
135                     if (v == 2)
136                         profile = glws::PROFILE_ES2;
137                     break;
138                 }
139             }
140         }
141         break;
142     }
143
144
145     glws::Context *context = glws::createContext(glretrace::visual[profile], share_context, profile);
146     if (!context) {
147         const char *name;
148         switch (profile) {
149         case glws::PROFILE_COMPAT:
150             name = "OpenGL";
151             break;
152         case glws::PROFILE_ES1:
153             name = "OpenGL ES 1.1";
154             break;
155         case glws::PROFILE_ES2:
156             name = "OpenGL ES 2.0";
157             break;
158         default:
159             name = "unknown";
160             break;
161         }
162
163         retrace::warning(call) << "Failed to create " << name << " context.\n";
164         os::abort();
165     }
166
167     context_map[orig_context] = context;
168     profile_map[orig_config] = profile;
169     last_profile = profile;
170 }
171
172 static void retrace_eglDestroyContext(trace::Call &call) {
173     unsigned long long orig_context = call.arg(1).toUIntPtr();
174
175     ContextMap::iterator it;
176     it = context_map.find(orig_context);
177
178     if (it != context_map.end()) {
179         delete it->second;
180         context_map.erase(it);
181     }
182 }
183
184 static void retrace_eglMakeCurrent(trace::Call &call) {
185     glws::Drawable *new_drawable = getDrawable(call.arg(1).toUIntPtr());
186     glws::Context *new_context = getContext(call.arg(3).toUIntPtr());
187
188     if (new_drawable == drawable && new_context == context) {
189         return;
190     }
191
192     if (drawable && context) {
193         glFlush();
194         if (!double_buffer) {
195             frame_complete(call);
196         }
197     }
198
199     bool result = glws::makeCurrent(new_drawable, new_context);
200
201     if (new_drawable && new_context && result) {
202         drawable = new_drawable;
203         context = new_context;
204     } else {
205         drawable = NULL;
206         context = NULL;
207     }
208 }
209
210
211 static void retrace_eglSwapBuffers(trace::Call &call) {
212     frame_complete(call);
213
214     if (double_buffer) {
215         drawable->swapBuffers();
216     } else {
217         glFlush();
218     }
219 }
220
221 const retrace::Entry glretrace::egl_callbacks[] = {
222     {"eglGetError", &retrace::ignore},
223     {"eglGetDisplay", &retrace::ignore},
224     {"eglInitialize", &retrace::ignore},
225     {"eglTerminate", &retrace::ignore},
226     {"eglQueryString", &retrace::ignore},
227     {"eglGetConfigs", &retrace::ignore},
228     {"eglChooseConfig", &retrace::ignore},
229     {"eglGetConfigAttrib", &retrace::ignore},
230     {"eglCreateWindowSurface", &retrace_eglCreateWindowSurface},
231     //{"eglCreatePbufferSurface", &retrace::ignore},
232     //{"eglCreatePixmapSurface", &retrace::ignore},
233     {"eglDestroySurface", &retrace_eglDestroySurface},
234     {"eglQuerySurface", &retrace::ignore},
235     {"eglBindAPI", &retrace_eglBindAPI},
236     {"eglQueryAPI", &retrace::ignore},
237     //{"eglWaitClient", &retrace::ignore},
238     //{"eglReleaseThread", &retrace::ignore},
239     //{"eglCreatePbufferFromClientBuffer", &retrace::ignore},
240     //{"eglSurfaceAttrib", &retrace::ignore},
241     //{"eglBindTexImage", &retrace::ignore},
242     //{"eglReleaseTexImage", &retrace::ignore},
243     {"eglSwapInterval", &retrace::ignore},
244     {"eglCreateContext", &retrace_eglCreateContext},
245     {"eglDestroyContext", &retrace_eglDestroyContext},
246     {"eglMakeCurrent", &retrace_eglMakeCurrent},
247     {"eglGetCurrentContext", &retrace::ignore},
248     {"eglGetCurrentSurface", &retrace::ignore},
249     {"eglGetCurrentDisplay", &retrace::ignore},
250     {"eglQueryContext", &retrace::ignore},
251     {"eglWaitGL", &retrace::ignore},
252     {"eglWaitNative", &retrace::ignore},
253     {"eglSwapBuffers", &retrace_eglSwapBuffers},
254     //{"eglCopyBuffers", &retrace::ignore},
255     {"eglGetProcAddress", &retrace::ignore},
256     {NULL, NULL},
257 };