diff options
author | Brian Paul <[email protected]> | 2009-08-14 12:57:39 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-08-14 12:57:39 -0600 |
commit | 12199ed96ca0dd2307e9893c58300623cfa6c0ee (patch) | |
tree | 2b9a1da6550165371d6477874bae82aecaeb0358 /src/mesa/shader/prog_print.h | |
parent | e3d47515f9b376b00743137529b4ca35a8436c92 (diff) |
mesa: also pass the GPU program to _mesa_append_uniforms_to_file()
We want the post-link program at this points.
Diffstat (limited to 'src/mesa/shader/prog_print.h')
-rw-r--r-- | src/mesa/shader/prog_print.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/shader/prog_print.h b/src/mesa/shader/prog_print.h index 460426fd510..fc286ded540 100644 --- a/src/mesa/shader/prog_print.h +++ b/src/mesa/shader/prog_print.h @@ -87,7 +87,8 @@ extern void _mesa_write_shader_to_file(const struct gl_shader *shader); extern void -_mesa_append_uniforms_to_file(const struct gl_shader *shader); +_mesa_append_uniforms_to_file(const struct gl_shader *shader, + const struct gl_program *prog); #endif /* PROG_PRINT_H */ |