summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-10-09 14:33:57 +0100
committerKeith Whitwell <keithw@vmware.com>2009-10-09 14:34:23 +0100
commit163a31952c903034c8a70213b344e1b2ef287270 (patch)
tree297a63feb62973f9cc25d94006f63757541a13ae /src
parent608c22272327d3b554c7665b60f6322716e5fd9d (diff)
llvmpipe: initialize setup line/tri/point funcs
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_setup.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_setup.c b/src/gallium/drivers/llvmpipe/lp_setup.c
index 8a9c169634..47839869ac 100644
--- a/src/gallium/drivers/llvmpipe/lp_setup.c
+++ b/src/gallium/drivers/llvmpipe/lp_setup.c
@@ -568,6 +568,10 @@ lp_setup_create( struct pipe_screen *screen )
setup->tile[i][j].head =
setup->tile[i][j].tail = CALLOC_STRUCT(cmd_block);
+ setup->triangle = first_triangle;
+ setup->line = first_line;
+ setup->point = first_point;
+
return setup;
fail: