summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-05-04 11:14:35 -0600
committerBrian Paul <brianp@vmware.com>2009-05-04 11:14:35 -0600
commitf95c0c06c0970d9a7700c7c8cea6396982b4b0dc (patch)
treee72ec9cfe671a21a144933a7dd937a0a1db52152
parent27dbdb1684af42ce3e7962111fa0726cf7ba28d1 (diff)
mesa: also print program params/constants when dumping shaders to disk
-rw-r--r--src/mesa/shader/prog_print.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/shader/prog_print.c b/src/mesa/shader/prog_print.c
index 9967f2978de..e6f9a910690 100644
--- a/src/mesa/shader/prog_print.c
+++ b/src/mesa/shader/prog_print.c
@@ -941,6 +941,10 @@ _mesa_write_shader_to_file(const struct gl_shader *shader)
fprintf(f, "/*\n");
_mesa_fprint_program_opt(f, shader->Program, PROG_PRINT_DEBUG, GL_TRUE);
fprintf(f, "*/\n");
+ fprintf(f, "/* Parameters / constants */\n");
+ fprintf(f, "/*\n");
+ _mesa_fprint_parameter_list(f, shader->Program->Parameters);
+ fprintf(f, "*/\n");
}
fclose(f);