summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/postprocess
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2013-11-16 13:55:50 -0700
committerBrian Paul <brianp@vmware.com>2013-11-18 08:56:34 -0700
commit7cf40c1cb33bdc78cf2297fa4dc5f249179b39a9 (patch)
tree08d240850791654ec34a40b8dbfa99ba3c10dd70 /src/gallium/auxiliary/postprocess
parentb7e5678fe59d31798b2d01114fea4660ac1f6dfc (diff)
downloadexternal_mesa3d-7cf40c1cb33bdc78cf2297fa4dc5f249179b39a9.zip
external_mesa3d-7cf40c1cb33bdc78cf2297fa4dc5f249179b39a9.tar.gz
external_mesa3d-7cf40c1cb33bdc78cf2297fa4dc5f249179b39a9.tar.bz2
postprocess: document the pp_init() function.
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Diffstat (limited to 'src/gallium/auxiliary/postprocess')
-rw-r--r--src/gallium/auxiliary/postprocess/postprocess.h9
1 files changed, 8 insertions, 1 deletions
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 *);