projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a7c2c7d
)
s/%f/%g/
author
Brian
<brian@nostromo.localnet.net>
Wed, 7 Feb 2007 23:09:13 +0000
(16:09 -0700)
committer
Brian
<brian@nostromo.localnet.net>
Wed, 7 Feb 2007 23:09:13 +0000
(16:09 -0700)
src/mesa/shader/prog_print.c
patch
|
blob
|
history
diff --git
a/src/mesa/shader/prog_print.c
b/src/mesa/shader/prog_print.c
index 6c303de9b5a40bbe64227d10aecbcd68d6dd66a5..0adb589daab1e10e8047b9aebc94a46f0ce2559a 100644
(file)
--- a/
src/mesa/shader/prog_print.c
+++ b/
src/mesa/shader/prog_print.c
@@
-429,7
+429,7
@@
_mesa_print_parameter_list(const struct gl_program_parameter_list *list)
for (i = 0; i < list->NumParameters; i++){
struct gl_program_parameter *param = list->Parameters + i;
const GLfloat *v = list->ParameterValues[i];
- _mesa_printf("param[%d] sz=%d %s %s = {%.3
f, %.3f, %.3f, %.3f
};\n",
+ _mesa_printf("param[%d] sz=%d %s %s = {%.3
g, %.3g, %.3g, %.3g
};\n",
i, param->Size,
program_file_string(list->Parameters[i].Type),
param->Name, v[0], v[1], v[2], v[3]);