diff options
author | Zack Rusin <[email protected]> | 2010-06-09 15:01:36 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2010-06-09 15:02:08 -0400 |
commit | 1d11eac93f408053a0807783b434624a6dfcb3fb (patch) | |
tree | 86d62ce69a016bc5d49445e6b4327bfb4ac4fd35 /src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c | |
parent | f571a569a03edc66ecd76d67f10db0a4bb600a40 (diff) |
draw: make sure geometry shader correctly iterates the output buffer
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c b/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c index 938b0b3c049..152437c4f72 100644 --- a/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c +++ b/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c @@ -67,7 +67,8 @@ static int max_out_vertex_count( if (gs_max_verts > count) alloc_count = align(gs_max_verts, 4); } - + /*debug_printf("------- alloc count = %d (input = %d)\n", + alloc_count, count);*/ return alloc_count; } |