]> git.cworth.org Git - apitrace/blob - glxtrace.py
Keep gl function pointers.
[apitrace] / glxtrace.py
1 ##########################################################################
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
27 from base import *
28 from glapi import glapi
29 import trace
30
31
32 glxapi = API("GLX")
33
34 PROC = Opaque("__GLXextFuncPtr")
35
36 glxapi.add_functions(glapi.functions)
37 glxapi.add_functions([
38     Function(PROC, "glXGetProcAddress", [(Alias("const GLubyte *", String), "procName")])
39 ])
40
41
42 class 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;' % (pvalue, ptype, instance)
63                 print '            %s = (%s)&%s;' % (instance, function.type, f.name);
64                 print '        }'
65             print '    }'
66
67
68 if __name__ == '__main__':
69     print
70     print '#include <stdlib.h>'
71     print '#include <string.h>'
72     print '#include <dlfcn.h>'
73     print '#include <X11/Xlib.h>'
74     print '#include <GL/gl.h>'
75     print '#include <GL/glext.h>'
76     print '#include <GL/glx.h>'
77     print '#include <GL/glxext.h>'
78     print
79     print '#include "log.hpp"'
80     print '#include "glhelpers.hpp"'
81     print
82     print 'extern "C" {'
83     print
84     tracer = GlxTracer()
85     tracer.trace_api(glxapi)
86     print
87     print '} /* extern "C" */'