diff options
author | Brian Paul <[email protected]> | 2013-11-16 13:55:50 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-11-18 08:56:34 -0700 |
commit | c27d8cc0c9e605073f2d4b734a74f931d3a67195 (patch) | |
tree | 3c4c6a3e888c5f4c2f11eafb8d3be7180073983e /src/gallium/auxiliary/postprocess/pp_run.c | |
parent | de2fd7dd0ba3856aa1cb08302bed0814b16f8810 (diff) |
postprocess: refactor header files, etc
Move private data structures and function prototypes out of the
public postprocess.h header file.
Create a pp_private.h for the shared, private data structures, functions.
Remove pp_program.h header.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/postprocess/pp_run.c')
-rw-r--r-- | src/gallium/auxiliary/postprocess/pp_run.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/postprocess/pp_run.c b/src/gallium/auxiliary/postprocess/pp_run.c index c71dbe9adb6..5c6dfa11cde 100644 --- a/src/gallium/auxiliary/postprocess/pp_run.c +++ b/src/gallium/auxiliary/postprocess/pp_run.c @@ -26,13 +26,15 @@ **************************************************************************/ #include "postprocess.h" - #include "postprocess/pp_filters.h" +#include "postprocess/pp_private.h" + #include "util/u_inlines.h" #include "util/u_sampler.h" #include "tgsi/tgsi_parse.h" + void pp_blit(struct pipe_context *pipe, struct pipe_resource *src_tex, |