summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary
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
commitb7e5678fe59d31798b2d01114fea4660ac1f6dfc (patch)
treea0dd858ada2e3dca44bf8b4f0484600831526e84 /src/gallium/auxiliary
parentc27d8cc0c9e605073f2d4b734a74f931d3a67195 (diff)
downloadexternal_mesa3d-b7e5678fe59d31798b2d01114fea4660ac1f6dfc.zip
external_mesa3d-b7e5678fe59d31798b2d01114fea4660ac1f6dfc.tar.gz
external_mesa3d-b7e5678fe59d31798b2d01114fea4660ac1f6dfc.tar.bz2
postprocess: move #defines to filters.h
They're not needed in postprocess.h Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r--src/gallium/auxiliary/postprocess/filters.h4
-rw-r--r--src/gallium/auxiliary/postprocess/postprocess.h3
2 files changed, 4 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/postprocess/filters.h b/src/gallium/auxiliary/postprocess/filters.h
index 1aa1e3a..321f333 100644
--- a/src/gallium/auxiliary/postprocess/filters.h
+++ b/src/gallium/auxiliary/postprocess/filters.h
@@ -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);
diff --git a/src/gallium/auxiliary/postprocess/postprocess.h b/src/gallium/auxiliary/postprocess/postprocess.h
index c4b2030..1db581c 100644
--- a/src/gallium/auxiliary/postprocess/postprocess.h
+++ b/src/gallium/auxiliary/postprocess/postprocess.h
@@ -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 */