VirtualBox

source: vbox/trunk/src/VBox/GuestHost/OpenGL/error/error.py@ 15532

最後變更 在這個檔案從15532是 15532,由 vboxsync 提交於 16 年 前

crOpenGL: export to OSE

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Id
檔案大小: 1.2 KB
 
1# Copyright (c) 2001, Stanford University
2# All rights reserved.
3#
4# See the file LICENSE.txt for information on redistributing this software.
5
6
7import sys
8
9import apiutil
10
11apiutil.CopyrightC()
12
13
14print """#include <stdio.h>
15#include "cr_error.h"
16#include "cr_spu.h"
17#include "state/cr_statetypes.h"
18
19#if defined(WINDOWS)
20#define ERROR_APIENTRY __stdcall
21#else
22#define ERROR_APIENTRY
23#endif
24
25#define ERROR_UNUSED(x) ((void)x)"""
26
27
28keys = apiutil.GetDispatchedFunctions(sys.argv[1]+"/APIspec.txt")
29
30for func_name in keys:
31 return_type = apiutil.ReturnType(func_name)
32 params = apiutil.Parameters(func_name)
33 print '\nstatic %s ERROR_APIENTRY error%s( %s )' % (return_type, func_name, apiutil.MakeDeclarationString(params ))
34 print '{'
35 print '\tcrError( "ERROR SPU: Unsupported function gl%s called!" );' % func_name
36 # Handle the void parameter list
37 for (name, type, vecSize) in params:
38 print '\tERROR_UNUSED(%s);' % name
39
40 if return_type != "void":
41 print '\treturn (%s)0;' % return_type
42 print '}'
43
44print 'SPUNamedFunctionTable _cr_error_table[] = {'
45for index in range(len(keys)):
46 func_name = keys[index]
47 print '\t{ "%s", (SPUGenericFunction) error%s },' % (func_name, func_name )
48print '\t{ NULL, NULL }'
49print '};'
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette