diff options
author | Brian <brian@nostromo.localnet.net> | 2007-02-07 16:09:13 -0700 |
---|---|---|
committer | Brian <brian@nostromo.localnet.net> | 2007-02-07 16:09:13 -0700 |
commit | c5e6bf63e6f8256c9e10bbbe8fb7a38de9d22921 (patch) | |
tree | 5ac01461ac8587daad52e60a6f38cad724fe5ba3 /src/mesa/shader/prog_print.c | |
parent | a7c2c7d6b28570230fb1b4fbc47b94581ef7e6fa (diff) |
s/%f/%g/
Diffstat (limited to 'src/mesa/shader/prog_print.c')
-rw-r--r-- | src/mesa/shader/prog_print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/prog_print.c b/src/mesa/shader/prog_print.c index 6c303de9b5..0adb589daa 100644 --- 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 = {%.3f, %.3f, %.3f, %.3f};\n", + _mesa_printf("param[%d] sz=%d %s %s = {%.3g, %.3g, %.3g, %.3g};\n", i, param->Size, program_file_string(list->Parameters[i].Type), param->Name, v[0], v[1], v[2], v[3]); |