diff options
author | Brian <[email protected]> | 2007-10-22 11:01:34 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-10-22 11:01:34 -0600 |
commit | e3444deec5a369e4ffabfeb9f6c257dd6b8e5a30 (patch) | |
tree | d13e8fc858073538175ec6df94af2e1cffe38cf9 /src/mesa/pipe/draw/draw_context.c | |
parent | 80d2bb7c643092e489dba77e4bd02a8684fcc42b (diff) |
plug the wide prims code into the pipeline
Diffstat (limited to 'src/mesa/pipe/draw/draw_context.c')
-rw-r--r-- | src/mesa/pipe/draw/draw_context.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/pipe/draw/draw_context.c b/src/mesa/pipe/draw/draw_context.c index d2015bd5146..544c423c2d3 100644 --- a/src/mesa/pipe/draw/draw_context.c +++ b/src/mesa/pipe/draw/draw_context.c @@ -48,6 +48,7 @@ struct draw_context *draw_create( void ) #endif /* create pipeline stages */ + draw->pipeline.wide = draw_wide_stage( draw ); draw->pipeline.unfilled = draw_unfilled_stage( draw ); draw->pipeline.twoside = draw_twoside_stage( draw ); draw->pipeline.offset = draw_offset_stage( draw ); |