blob: 38bac452f9bca7def38c7893b8930c9f56dd08f0 [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
José Fonseca9796b842010-11-25 11:44:50 +000027from stdapi import *
José Fonseca8fbdd3a2010-11-23 20:55:07 +000028from glapi import glapi
29import trace
30
31
32glxapi = API("GLX")
33
34PROC = Opaque("__GLXextFuncPtr")
35
36glxapi.add_functions(glapi.functions)
37glxapi.add_functions([
José Fonseca5f81c3a2010-11-24 08:42:22 +000038 Function(PROC, "glXGetProcAddressARB", [(Alias("const GLubyte *", CString), "procName")]),
39 Function(PROC, "glXGetProcAddress", [(Alias("const GLubyte *", CString), "procName")]),
José Fonseca8fbdd3a2010-11-23 20:55:07 +000040])
41
42
43class GlxTracer(trace.Tracer):
44
45 def get_function_address(self, function):
José Fonseca6fa64d02010-11-24 00:46:26 +000046 if function.name.startswith("glXGetProcAddress"):
José Fonseca8fbdd3a2010-11-23 20:55:07 +000047 return 'dlsym(RTLD_NEXT, "%s")' % (function.name,)
48 else:
49 print ' if (!pglXGetProcAddress) {'
50 print ' pglXGetProcAddress = (PglXGetProcAddress)dlsym(RTLD_NEXT, "glXGetProcAddress");'
51 print ' if (!pglXGetProcAddress)'
52 print ' Log::Abort();'
53 print ' }'
54 return 'pglXGetProcAddress((const GLubyte *)"%s")' % (function.name,)
55
56 def wrap_ret(self, function, instance):
José Fonseca6fa64d02010-11-24 00:46:26 +000057 if function.name.startswith("glXGetProcAddress"):
José Fonseca8fbdd3a2010-11-23 20:55:07 +000058 print ' if (%s) {' % instance
59 for f in glxapi.functions:
60 ptype = self.function_pointer_type(f)
61 pvalue = self.function_pointer_value(f)
62 print ' if(!strcmp("%s", (const char *)procName)) {' % f.name
José Fonsecaf8f6e452010-11-23 21:35:30 +000063 print ' %s = (%s)%s;' % (pvalue, ptype, instance)
José Fonseca8fbdd3a2010-11-23 20:55:07 +000064 print ' %s = (%s)&%s;' % (instance, function.type, f.name);
65 print ' }'
66 print ' }'
67
68
69if __name__ == '__main__':
70 print
71 print '#include <stdlib.h>'
72 print '#include <string.h>'
73 print '#include <dlfcn.h>'
74 print '#include <X11/Xlib.h>'
75 print '#include <GL/gl.h>'
76 print '#include <GL/glext.h>'
77 print '#include <GL/glx.h>'
78 print '#include <GL/glxext.h>'
79 print
80 print '#include "log.hpp"'
81 print '#include "glhelpers.hpp"'
82 print
83 print 'extern "C" {'
84 print
85 tracer = GlxTracer()
86 tracer.trace_api(glxapi)
87 print
88 print '} /* extern "C" */'