1 ##########################################################################
3 # Copyright 2008-2009 VMware, Inc.
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:
13 # The above copyright notice and this permission notice shall be included in
14 # all copies or substantial portions of the Software.
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
24 ##########################################################################/
27 """WGL tracing code generator."""
30 from specs.stdapi import API
31 from specs.glapi import glapi
32 from specs.wglapi import wglapi
33 from dispatch import function_pointer_type, function_pointer_value
34 from gltrace import GlTracer
38 class WglTracer(GlTracer):
40 def wrap_ret(self, function, instance):
41 GlTracer.wrap_ret(self, function, instance)
43 if function.name == "wglGetProcAddress":
44 print ' if (%s) {' % instance
46 func_dict = dict([(f.name, f) for f in glapi.functions + wglapi.functions])
48 def handle_case(function_name):
49 f = func_dict[function_name]
50 ptype = function_pointer_type(f)
51 pvalue = function_pointer_value(f)
52 print ' %s = (%s)%s;' % (pvalue, ptype, instance)
53 print ' %s = (%s)&%s;' % (instance, function.type, f.name);
56 print ' os::log("apitrace: warning: unknown function \\"%s\\"\\n", lpszProc);'
58 string_switch('lpszProc', func_dict.keys(), handle_case, handle_default)
62 if __name__ == '__main__':
64 print '#define _GDI32_'
66 print '#include <string.h>'
67 print '#include <windows.h>'
69 print '#include "trace_writer.hpp"'
70 print '#include "os.hpp"'
73 static HINSTANCE g_hDll = NULL;
76 __getPublicProcAddress(LPCSTR lpProcName)
79 char szDll[MAX_PATH] = {0};
81 if (!GetSystemDirectoryA(szDll, MAX_PATH)) {
85 strcat(szDll, "\\\\opengl32.dll");
87 g_hDll = LoadLibraryA(szDll);
93 return GetProcAddress(g_hDll, lpProcName);
97 print '// To validate our prototypes'
98 print '#define GL_GLEXT_PROTOTYPES'
99 print '#define WGL_GLXEXT_PROTOTYPES'
101 print '#include "glproc.hpp"'
102 print '#include "glsize.hpp"'
108 tracer.trace_api(api)