From 7cf40c1cb33bdc78cf2297fa4dc5f249179b39a9 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Sat, 16 Nov 2013 13:55:50 -0700 Subject: postprocess: document the pp_init() function. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Marek Olšák --- src/gallium/auxiliary/postprocess/postprocess.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/gallium/auxiliary/postprocess') diff --git a/src/gallium/auxiliary/postprocess/postprocess.h b/src/gallium/auxiliary/postprocess/postprocess.h index 1db581c..c72f2c4 100644 --- a/src/gallium/auxiliary/postprocess/postprocess.h +++ b/src/gallium/auxiliary/postprocess/postprocess.h @@ -41,8 +41,15 @@ typedef void (*pp_func) (struct pp_queue_t *, struct pipe_resource *, /* Main functions */ -struct pp_queue_t *pp_init(struct pipe_context *pipe, const unsigned int *, +/** + * Note enabled is an array of values, one per filter stage. + * Zero indicates the stage is disabled. Non-zero indicates the + * stage is enabled. For some stages, the value controls quality. + */ +struct pp_queue_t *pp_init(struct pipe_context *pipe, + const unsigned int *enabled, struct cso_context *); + void pp_run(struct pp_queue_t *, struct pipe_resource *, struct pipe_resource *, struct pipe_resource *); void pp_free(struct pp_queue_t *); -- cgit v1.1