summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c
diff options
context:
space:
mode:
authorZack Rusin <zack@kde.org>2010-06-09 15:01:36 -0400
committerZack Rusin <zack@kde.org>2010-06-09 15:02:08 -0400
commit1d11eac93f408053a0807783b434624a6dfcb3fb (patch)
tree86d62ce69a016bc5d49445e6b4327bfb4ac4fd35 /src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c
parentf571a569a03edc66ecd76d67f10db0a4bb600a40 (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.c3
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 938b0b3c04..152437c4f7 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;
}