diff options
author | Brian Paul <[email protected]> | 2008-06-09 09:27:52 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-06-09 09:27:52 -0600 |
commit | 1c316f1e824b094977059145a1abcdb50a391f1c (patch) | |
tree | 32310db8269dc506700dd485be19e9a340615b9f /src | |
parent | cfc23bc54c8cae2615d447bc199ff87ef7e9298e (diff) |
gallium: disable a tgsi_dump() call
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vs_aos.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs_aos.c b/src/gallium/auxiliary/draw/draw_vs_aos.c index 45f36cff2a1..458bbbe3765 100644 --- a/src/gallium/auxiliary/draw/draw_vs_aos.c +++ b/src/gallium/auxiliary/draw/draw_vs_aos.c @@ -2066,7 +2066,9 @@ static struct draw_vs_varient *varient_aos_sse( struct draw_vertex_shader *vs, if (!vaos->attrib) goto fail; +#if 0 tgsi_dump(vs->state.tokens, 0); +#endif if (!build_vertex_program( vaos, TRUE )) goto fail; |