diff options
author | Keith Whitwell <[email protected]> | 2008-04-03 12:21:30 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-04-03 12:21:30 +0100 |
commit | d2cb4ba0bb2388c784f145c59f3798f914dc7f39 (patch) | |
tree | 61ab6f6d5e4311c2d98cebe3de1c821a4ef65bda /src/gallium/auxiliary/draw/SConscript | |
parent | add46fbc8cc04d3bce303815541a7bc5d0b33953 (diff) |
draw: add passthrough path to the pipeline
This handles the case where bypass_vs is set, but vertices need to go
through the pipeline for some reason - eg unfilled polygon mode.
Demonstrates how to drive the pipeline from inside one of these things.
Diffstat (limited to 'src/gallium/auxiliary/draw/SConscript')
-rw-r--r-- | src/gallium/auxiliary/draw/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/draw/SConscript b/src/gallium/auxiliary/draw/SConscript index 981225a8c2c..9ca41974412 100644 --- a/src/gallium/auxiliary/draw/SConscript +++ b/src/gallium/auxiliary/draw/SConscript @@ -17,6 +17,7 @@ draw = env.ConvenienceLibrary( 'draw_pt.c', 'draw_pt_vcache.c', 'draw_pt_fetch_emit.c', + 'draw_pt_fetch_pipeline.c', 'draw_pt_elts.c', 'draw_prim.c', 'draw_pstipple.c', |