diff options
author | Keith Whitwell <[email protected]> | 2009-08-23 11:22:41 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-11-03 17:12:34 +0000 |
commit | 026cf84bbbd939f0ae573a9841bb49aaa1d9ae75 (patch) | |
tree | 1a6aa59e7ae623215ae85478cdf39dc3fea92458 /src/gallium/drivers/llvmpipe/lp_context.h | |
parent | 677a055fa0cf7b6476c716be187513c41060d417 (diff) |
llvmpipe: remove old prim_setup draw stage
Everything now goes through the draw_vbuf handler, the same as
regular drivers.
Based on Keith's commit 4fe0fc3eba1f79beda890a5016359d549bab6ad4.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_context.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_context.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_context.h b/src/gallium/drivers/llvmpipe/lp_context.h index 7df340554e0..3ad95d0bfc2 100644 --- a/src/gallium/drivers/llvmpipe/lp_context.h +++ b/src/gallium/drivers/llvmpipe/lp_context.h @@ -121,9 +121,10 @@ struct llvmpipe_context { /** The primitive drawing context */ struct draw_context *draw; - struct draw_stage *setup; + + /** Draw module backend */ + struct vbuf_render *vbuf_backend; struct draw_stage *vbuf; - struct llvmpipe_vbuf_render *vbuf_render; boolean dirty_render_cache; |