blob: 0e7dc57eec74ba68547e35f99489ea6857aa1bec [file] [log] [blame]
José Fonseca8fbdd3a2010-11-23 20:55:07 +00001##########################################################################
2#
3# Copyright 2008-2009 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
27from base import *
28from glapi import glapi
29import trace
30
31
32glxapi = API("GLX")
33
34PROC = Opaque("__GLXextFuncPtr")
35
36glxapi.add_functions(glapi.functions)
37glxapi.add_functions([
38 Function(PROC, "glXGetProcAddress", [(Alias("const GLubyte *", String), "procName")])
39])
40
41
42class GlxTracer(trace.Tracer):
43
44 def get_function_address(self, function):
45 if function.name == "glXGetProcAddress":
46 return 'dlsym(RTLD_NEXT, "%s")' % (function.name,)
47 else:
48 print ' if (!pglXGetProcAddress) {'
49 print ' pglXGetProcAddress = (PglXGetProcAddress)dlsym(RTLD_NEXT, "glXGetProcAddress");'
50 print ' if (!pglXGetProcAddress)'
51 print ' Log::Abort();'
52 print ' }'
53 return 'pglXGetProcAddress((const GLubyte *)"%s")' % (function.name,)
54
55 def wrap_ret(self, function, instance):
56 if function.name == "glXGetProcAddress":
57 print ' if (%s) {' % instance
58 for f in glxapi.functions:
59 ptype = self.function_pointer_type(f)
60 pvalue = self.function_pointer_value(f)
61 print ' if(!strcmp("%s", (const char *)procName)) {' % f.name
62 print ' %s = (%s)&%s;' % (instance, function.type, f.name);
63 print ' }'
64 print ' }'
65
66
67if __name__ == '__main__':
68 print
69 print '#include <stdlib.h>'
70 print '#include <string.h>'
71 print '#include <dlfcn.h>'
72 print '#include <X11/Xlib.h>'
73 print '#include <GL/gl.h>'
74 print '#include <GL/glext.h>'
75 print '#include <GL/glx.h>'
76 print '#include <GL/glxext.h>'
77 print
78 print '#include "log.hpp"'
79 print '#include "glhelpers.hpp"'
80 print
81 print 'extern "C" {'
82 print
83 tracer = GlxTracer()
84 tracer.trace_api(glxapi)
85 print
86 print '} /* extern "C" */'