diff options
author | Keith Whitwell <[email protected]> | 2009-07-24 16:49:35 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-08-29 09:21:18 +0100 |
commit | bdbb4beb21876010b14785569a920fa65a67d1ad (patch) | |
tree | 40b8f2d0f6d4020c4229ab2e582f9b7e2a03bb5c /src/gallium/drivers/llvmpipe/lp_quad_pipe.h | |
parent | 4486012245c5f526059d3872ac3561f53705d1cf (diff) |
llvmpipe: expand quad pipeline to process >1 quad at a time
This is part one -- we still only pass a single quad down, but
the code can now cope with more. The quads must all be from the same
tile.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_quad_pipe.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_quad_pipe.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_quad_pipe.h b/src/gallium/drivers/llvmpipe/lp_quad_pipe.h index 4c3efdee69c..5c8c7b3a737 100644 --- a/src/gallium/drivers/llvmpipe/lp_quad_pipe.h +++ b/src/gallium/drivers/llvmpipe/lp_quad_pipe.h @@ -49,7 +49,7 @@ struct quad_stage { void (*begin)(struct quad_stage *qs); /** the stage action */ - void (*run)(struct quad_stage *qs, struct quad_header *quad); + void (*run)(struct quad_stage *qs, struct quad_header *quad[], unsigned nr); void (*destroy)(struct quad_stage *qs); }; @@ -69,6 +69,6 @@ struct quad_stage *lp_quad_output_stage( struct llvmpipe_context *llvmpipe ); void lp_build_quad_pipeline(struct llvmpipe_context *lp); -void lp_depth_test_quad(struct quad_stage *qs, struct quad_header *quad); +boolean lp_depth_test_quad(struct quad_stage *qs, struct quad_header *quad); #endif /* LP_QUAD_PIPE_H */ |