mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
better api trace/log messages
This commit is contained in:
parent
d2237d48ec
commit
b15a3b4d13
3 changed files with 221 additions and 191 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
# $Id: glapitemp.py,v 1.2 2001/12/14 03:17:00 brianp Exp $
|
||||
# $Id: glapitemp.py,v 1.3 2001/12/15 16:43:00 brianp Exp $
|
||||
|
||||
# Mesa 3-D graphics library
|
||||
# Version: 4.1
|
||||
|
|
@ -34,7 +34,7 @@
|
|||
# The apispec file must be in the current directory.
|
||||
|
||||
|
||||
|
||||
import string
|
||||
import apiparser;
|
||||
|
||||
|
||||
|
|
@ -120,23 +120,44 @@ def MakeParamList(nameList):
|
|||
#enddef
|
||||
|
||||
|
||||
def Contains(haystack, needle):
|
||||
if string.find(haystack, needle) >= 0:
|
||||
return 1
|
||||
else:
|
||||
return 0
|
||||
#enddef
|
||||
|
||||
|
||||
def MakePrintfString(funcName, argTypeList, argNameList):
|
||||
result = '(F, "gl%s(' % (funcName)
|
||||
|
||||
n = len(argTypeList)
|
||||
i = 1
|
||||
isPointer = {}
|
||||
floatv = {}
|
||||
for argType in argTypeList:
|
||||
isPointer[i] = 0
|
||||
floatv[i] = 0
|
||||
if argType == 'GLenum':
|
||||
result = result + '0x%x'
|
||||
elif argType in ['GLfloat', 'GLdouble', 'GLclampf', 'GLclampd']:
|
||||
result = result + '%f'
|
||||
elif argType in ['GLbyte', 'GLubyte', 'GLshort', 'GLushort', 'GLint', 'GLuint', 'GLboolean']:
|
||||
elif argType in ['GLbyte', 'GLubyte', 'GLshort', 'GLushort', 'GLint', 'GLuint', 'GLboolean', 'GLsizei']:
|
||||
result = result + '%d'
|
||||
else:
|
||||
result = result + '%p'
|
||||
isPointer[i] = 1
|
||||
if argType[0:13] == 'const GLfloat' or argType[0:14] == 'const GLdouble':
|
||||
if Contains(funcName, '2fv') or Contains(funcName, '2dv'):
|
||||
result = result + ' /* %g, %g */'
|
||||
floatv[i] = 2
|
||||
elif Contains(funcName, '3fv') or Contains(funcName, '3dv'):
|
||||
result = result + ' /* %g, %g, %g */'
|
||||
floatv[i] = 3
|
||||
elif Contains(funcName, '4fv') or Contains(funcName, '4dv'):
|
||||
result = result + ' /* %g, %g, %g, %g */'
|
||||
floatv[i] = 4
|
||||
#endif
|
||||
if i < n:
|
||||
result = result + ', '
|
||||
i = i + 1
|
||||
|
|
@ -152,6 +173,12 @@ def MakePrintfString(funcName, argTypeList, argNameList):
|
|||
if isPointer[i]:
|
||||
result = result + '(void *) '
|
||||
result = result + pname
|
||||
if floatv[i] == 2:
|
||||
result = result + ', ' + pname + '[0], ' + pname + '[1]'
|
||||
elif floatv[i] == 3:
|
||||
result = result + ', ' + pname + '[0], ' + pname + '[1], ' + pname + '[2]'
|
||||
elif floatv[i] == 4:
|
||||
result = result + ', ' + pname + '[0], ' + pname + '[1], ' + pname + '[2], ' + pname + '[3]'
|
||||
if i < n:
|
||||
result = result + ', '
|
||||
i = i + 1
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
/* $Id: dispatch.c,v 1.25 2001/12/04 23:43:31 brianp Exp $ */
|
||||
/* $Id: dispatch.c,v 1.26 2001/12/15 16:42:59 brianp Exp $ */
|
||||
|
||||
/*
|
||||
* Mesa 3-D graphics library
|
||||
* Version: 3.5
|
||||
* Version: 4.1
|
||||
*
|
||||
* Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
|
||||
*
|
||||
|
|
@ -66,21 +66,23 @@
|
|||
|
||||
#define F stdout
|
||||
#define DISPATCH(FUNC, ARGS, MESSAGE) \
|
||||
(_glapi_Dispatch->FUNC) ARGS; \
|
||||
fprintf MESSAGE; \
|
||||
fprintf(F, "\n");
|
||||
fprintf MESSAGE; \
|
||||
(_glapi_Dispatch->FUNC) ARGS;
|
||||
|
||||
#define RETURN_DISPATCH(FUNC, ARGS, MESSAGE) \
|
||||
fprintf MESSAGE; \
|
||||
return (_glapi_Dispatch->FUNC) ARGS
|
||||
|
||||
#else
|
||||
|
||||
#define DISPATCH(FUNC, ARGS, MESSAGE) \
|
||||
(_glapi_Dispatch->FUNC) ARGS;
|
||||
|
||||
#endif /* logging */
|
||||
|
||||
|
||||
#define RETURN_DISPATCH(FUNC, ARGS, MESSAGE) \
|
||||
return (_glapi_Dispatch->FUNC) ARGS
|
||||
|
||||
#endif /* logging */
|
||||
|
||||
|
||||
#ifndef GLAPIENTRY
|
||||
#define GLAPIENTRY
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue