diff options
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 */ |