postprocess: move #defines to filters.h

They're not needed in postprocess.h

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
Brian Paul 2013-11-16 13:55:50 -07:00
parent c27d8cc0c9
commit b7e5678fe5
2 changed files with 4 additions and 3 deletions

View file

@ -30,6 +30,10 @@
#include "postprocess/postprocess.h"
#define PP_FILTERS 6 /* Increment this if you add filters */
#define PP_MAX_PASSES 6
typedef bool (*pp_init_func) (struct pp_queue_t *, unsigned int,
unsigned int);
typedef void (*pp_free_func) (struct pp_queue_t *, unsigned int);

View file

@ -30,9 +30,6 @@
#include "pipe/p_state.h"
#define PP_FILTERS 6 /* Increment this if you add filters */
#define PP_MAX_PASSES 6
struct cso_context;
struct pp_queue_t; /* Forward definition */