diff options
author | Brian Paul <[email protected]> | 2013-11-16 13:55:44 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-11-18 08:56:34 -0700 |
commit | de2fd7dd0ba3856aa1cb08302bed0814b16f8810 (patch) | |
tree | 6c50d130a70c81c1301097e5ff2f09ad8f6f6dab /src/gallium/auxiliary/postprocess/postprocess.h | |
parent | 401f2d6ea8d8068747b6f507e8a8907ad9f6fe71 (diff) |
postprocess: rename program to pp_program
To match the pp_ namespace convention.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/postprocess/postprocess.h')
-rw-r--r-- | src/gallium/auxiliary/postprocess/postprocess.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/postprocess/postprocess.h b/src/gallium/auxiliary/postprocess/postprocess.h index 04b6c75bfb0..e0ab43e320f 100644 --- a/src/gallium/auxiliary/postprocess/postprocess.h +++ b/src/gallium/auxiliary/postprocess/postprocess.h @@ -60,7 +60,7 @@ struct pp_queue_t void ***shaders; /* Shaders in TGSI form */ unsigned int *filters; /* Active filter to filters.h mapping. */ - struct program *p; + struct pp_program *p; bool fbos_init; }; @@ -74,7 +74,7 @@ void pp_run(struct pp_queue_t *, struct pipe_resource *, void pp_free(struct pp_queue_t *); void pp_free_fbos(struct pp_queue_t *); void pp_debug(const char *, ...); -struct program *pp_init_prog(struct pp_queue_t *, struct pipe_context *pipe, +struct pp_program *pp_init_prog(struct pp_queue_t *, struct pipe_context *pipe, struct cso_context *); void pp_init_fbos(struct pp_queue_t *, unsigned int, unsigned int); void pp_blit(struct pipe_context *pipe, |