blob: 39a818a47f8a78582815772e7ec88609e4b0834c [file] [log] [blame]
José Fonseca7e329022010-11-19 17:05:18 +00001##########################################################################
2#
3# Copyright 2010 VMware, Inc.
4# All Rights Reserved.
5#
6# Permission is hereby granted, free of charge, to any person obtaining a copy
7# of this software and associated documentation files (the "Software"), to deal
8# in the Software without restriction, including without limitation the rights
9# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10# copies of the Software, and to permit persons to whom the Software is
11# furnished to do so, subject to the following conditions:
12#
13# The above copyright notice and this permission notice shall be included in
14# all copies or substantial portions of the Software.
15#
16# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22# THE SOFTWARE.
23#
24##########################################################################/
25
26
José Fonseca9796b842010-11-25 11:44:50 +000027import stdapi
José Fonseca8fbdd3a2010-11-23 20:55:07 +000028import glapi
José Fonsecadacd8dd2010-11-25 17:50:26 +000029from retrace import Retracer
José Fonseca7e329022010-11-19 17:05:18 +000030
31
José Fonsecadacd8dd2010-11-25 17:50:26 +000032class GlRetracer(Retracer):
José Fonsecac9edb832010-11-20 09:03:10 +000033
José Fonseca4441baf2010-11-25 19:55:27 +000034 def filter_function(self, function):
35 return function.name not in [
36 "glNewBufferRegion",
37 "glDeleteBufferRegion",
38 "glReadBufferRegion",
39 "glDrawBufferRegion",
40 "glBufferRegionEnabled",
41 ]
42
José Fonseca3d245f42010-11-28 00:08:23 +000043 def retrace_function(self, function):
44 Retracer.retrace_function(self, function)
45
José Fonsecafa15d332010-11-25 20:22:39 +000046 def call_function(self, function):
47 if function.name in ("glDrawArrays", "glDrawElements", "glDrawRangeElements", "glMultiDrawElements"):
48 print ' GLint __array_buffer = 0;'
49 print ' glGetIntegerv(GL_ARRAY_BUFFER_BINDING, &__array_buffer);'
50 print ' if (!__array_buffer) {'
51 self.fail_function(function)
52 print ' }'
53
José Fonseca3d245f42010-11-28 00:08:23 +000054 if function.name == "glEnd":
55 print ' insideGlBeginEnd = false;'
José Fonsecafa15d332010-11-25 20:22:39 +000056 Retracer.call_function(self, function)
José Fonseca3d245f42010-11-28 00:08:23 +000057 if function.name == "glBegin":
58 print ' insideGlBeginEnd = true;'
59 else:
60 # glGetError is not allowed inside glBegin/glEnd
61 print ' checkGlError();'
62
José Fonsecafa15d332010-11-25 20:22:39 +000063
José Fonsecadacd8dd2010-11-25 17:50:26 +000064 def extract_arg(self, function, arg, arg_type, lvalue, rvalue):
65 if function.name in [
José Fonseca833d14a2010-11-25 18:37:38 +000066 "glColorPointer",
67 "glEdgeFlagPointer",
José Fonsecadacd8dd2010-11-25 17:50:26 +000068 "glIndexPointer",
69 "glNormalPointer",
70 "glTexCoordPointer",
71 "glVertexPointer",
72 "glFogCoordPointer",
73 "glSecondaryColorPointer",
74 "glVertexAttribPointer",
75 ] and arg.name == 'pointer':
76 self.extract_pointer(function, arg, arg_type, lvalue, rvalue)
77 else:
78 Retracer.extract_arg(self, function, arg, arg_type, lvalue, rvalue)
79
80 def extract_pointer(self, function, arg, arg_type, lvalue, rvalue):
81 print ' if (dynamic_cast<Trace::Null *>(&%s)) {' % rvalue
82 print ' %s = 0;' % (lvalue)
83 print ' } else {'
84 print ' %s = (%s)(uintptr_t)(%s);' % (lvalue, arg_type, rvalue)
85 print ' }'
José Fonsecae6a50bd2010-11-24 10:12:22 +000086
87
José Fonseca7e329022010-11-19 17:05:18 +000088if __name__ == '__main__':
89 print
José Fonseca7e329022010-11-19 17:05:18 +000090 print '#include <string.h>'
José Fonseca3d245f42010-11-28 00:08:23 +000091 print '#include <iostream>'
José Fonseca094cb2d2010-11-24 15:55:03 +000092 print
José Fonsecac6b49ce2010-11-28 16:43:04 +000093 print '#include "glproc.hpp"'
José Fonseca7e329022010-11-19 17:05:18 +000094 print '#include <GL/glut.h>'
95 print
José Fonsecafeb5d992010-11-25 17:14:18 +000096 print 'static bool double_buffer = false;'
José Fonseca3d245f42010-11-28 00:08:23 +000097 print 'static bool insideGlBeginEnd = false;'
José Fonsecafeb5d992010-11-25 17:14:18 +000098 print
José Fonseca3d245f42010-11-28 00:08:23 +000099 print '''
100static void
101checkGlError(void) {
102 if (insideGlBeginEnd) {
103 return;
104 }
105
106 GLenum error = glGetError();
107 if (error == GL_NO_ERROR) {
108 return;
109 }
110
111 std::cerr << "warning: glGetError() = ";
112 switch (error) {
113 case GL_INVALID_ENUM:
114 std::cerr << "GL_INVALID_ENUM";
115 break;
116 case GL_INVALID_VALUE:
117 std::cerr << "GL_INVALID_VALUE";
118 break;
119 case GL_INVALID_OPERATION:
120 std::cerr << "GL_INVALID_OPERATION";
121 break;
122 case GL_STACK_OVERFLOW:
123 std::cerr << "GL_STACK_OVERFLOW";
124 break;
125 case GL_STACK_UNDERFLOW:
126 std::cerr << "GL_STACK_UNDERFLOW";
127 break;
128 case GL_OUT_OF_MEMORY:
129 std::cerr << "GL_OUT_OF_MEMORY";
130 break;
131 case GL_INVALID_FRAMEBUFFER_OPERATION:
132 std::cerr << "GL_INVALID_FRAMEBUFFER_OPERATION";
133 break;
134 case GL_TABLE_TOO_LARGE:
135 std::cerr << "GL_TABLE_TOO_LARGE";
136 break;
137 default:
138 std::cerr << error;
139 break;
140 }
141 std::cerr << "\\n";
142}
143'''
José Fonsecae0e61402010-11-25 15:03:23 +0000144 api = glapi.glapi
145 retracer = GlRetracer()
146 retracer.retrace_api(glapi.glapi)
José Fonseca7e329022010-11-19 17:05:18 +0000147 print '''
148
José Fonseca3d245f42010-11-28 00:08:23 +0000149static Trace::Parser parser;
José Fonseca082051b2010-11-23 12:00:31 +0000150
José Fonseca6f51d3b2010-11-22 19:56:19 +0000151static void display(void) {
José Fonseca3d245f42010-11-28 00:08:23 +0000152 Trace::Call *call;
José Fonseca6f51d3b2010-11-22 19:56:19 +0000153
José Fonseca3d245f42010-11-28 00:08:23 +0000154 while ((call = parser.parse_call())) {
155 if (call->name() == "glFlush") {
José Fonsecafeb5d992010-11-25 17:14:18 +0000156 glFlush();
José Fonseca3d245f42010-11-28 00:08:23 +0000157 return;
158 }
159
160 if (!retrace_call(*call)) {
161 if (call->name() == "glXSwapBuffers" ||
162 call->name() == "wglSwapBuffers") {
163 if (double_buffer)
164 glutSwapBuffers();
165 else
166 glFlush();
167 return;
José Fonseca082051b2010-11-23 12:00:31 +0000168 }
José Fonseca3d245f42010-11-28 00:08:23 +0000169 }
170 }
José Fonseca6f51d3b2010-11-22 19:56:19 +0000171
José Fonseca3d245f42010-11-28 00:08:23 +0000172 glFlush();
173 glutIdleFunc(NULL);
José Fonseca6f51d3b2010-11-22 19:56:19 +0000174}
175
176static void idle(void) {
José Fonseca3d245f42010-11-28 00:08:23 +0000177 glutPostRedisplay();
José Fonseca6f51d3b2010-11-22 19:56:19 +0000178}
José Fonseca7e329022010-11-19 17:05:18 +0000179
180int main(int argc, char **argv)
181{
José Fonseca6f51d3b2010-11-22 19:56:19 +0000182
José Fonseca3d245f42010-11-28 00:08:23 +0000183 int i;
184 for (i = 1; i < argc; ++i) {
185 const char *arg = argv[i];
José Fonseca094cb2d2010-11-24 15:55:03 +0000186
José Fonseca3d245f42010-11-28 00:08:23 +0000187 if (arg[0] != '-') {
188 break;
189 }
José Fonseca094cb2d2010-11-24 15:55:03 +0000190
José Fonseca3d245f42010-11-28 00:08:23 +0000191 if (!strcmp(arg, "--")) {
192 break;
193 }
194 else if (!strcmp(arg, "-db")) {
195 double_buffer = true;
196 } else if (!strcmp(arg, "-v")) {
197 ++verbosity;
198 } else {
199 std::cerr << "error: unknown option " << arg << "\\n";
200 return 1;
201 }
202 }
José Fonseca094cb2d2010-11-24 15:55:03 +0000203
José Fonseca3d245f42010-11-28 00:08:23 +0000204 glutInit(&argc, argv);
205 glutInitWindowPosition(0, 0);
206 glutInitWindowSize(800, 600);
207 glutInitDisplayMode(GLUT_DEPTH | GLUT_RGB | (double_buffer ? GLUT_DOUBLE : GLUT_SINGLE));
208 glutCreateWindow(argv[0]);
José Fonsecafeb5d992010-11-25 17:14:18 +0000209
José Fonseca3d245f42010-11-28 00:08:23 +0000210 glutDisplayFunc(&display);
211 glutIdleFunc(&idle);
José Fonsecafeb5d992010-11-25 17:14:18 +0000212
José Fonseca3d245f42010-11-28 00:08:23 +0000213 for (GLuint h = 0; h < 1024; ++h) {
214 __list_map[h] = h;
215 }
José Fonsecafeb5d992010-11-25 17:14:18 +0000216
José Fonseca3d245f42010-11-28 00:08:23 +0000217 for ( ; i < argc; ++i) {
218 if (parser.open(argv[i])) {
219 glutMainLoop();
220 parser.close();
221 }
222 }
José Fonseca6f51d3b2010-11-22 19:56:19 +0000223
José Fonseca3d245f42010-11-28 00:08:23 +0000224 return 0;
José Fonseca7e329022010-11-19 17:05:18 +0000225}
226
José Fonseca3d245f42010-11-28 00:08:23 +0000227'''