summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/Makefile.sources
diff options
context:
space:
mode:
authorZack Rusin <[email protected]>2013-08-03 02:56:19 -0400
committerZack Rusin <[email protected]>2013-08-03 02:57:40 -0400
commita9cb914f49fa3810b15eb9df9f6209a16fafa491 (patch)
tree44eaf8ce61385fa8aeb8f0b182e2b06d17b8eea1 /src/gallium/auxiliary/Makefile.sources
parentc9c211fae194ac6bf50e0c579c8670590690dd6e (diff)
draw: add back separate input assembler
the issue is that stream output is run before the pipeline, which means that unless we decompose the primitives before the so then things crash. we could convert the entire stream output code into a pipeline stage but it will take a bit, so for now fix the crashes by simply re-adding the old input assembler which is run before the SO. Signed-off-by: Zack Rusin <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/Makefile.sources')
-rw-r--r--src/gallium/auxiliary/Makefile.sources1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/Makefile.sources b/src/gallium/auxiliary/Makefile.sources
index ee93e8bcf07..b0172de5270 100644
--- a/src/gallium/auxiliary/Makefile.sources
+++ b/src/gallium/auxiliary/Makefile.sources
@@ -24,6 +24,7 @@ C_SOURCES := \
draw/draw_pipe_vbuf.c \
draw/draw_pipe_wide_line.c \
draw/draw_pipe_wide_point.c \
+ draw/draw_prim_assembler.c \
draw/draw_pt.c \
draw/draw_pt_emit.c \
draw/draw_pt_fetch.c \