postprocess: move #defines to filters.h
authorBrian Paul <brianp@vmware.com>
Sat, 16 Nov 2013 20:55:50 +0000 (13:55 -0700)
committerBrian Paul <brianp@vmware.com>
Mon, 18 Nov 2013 15:56:34 +0000 (08:56 -0700)
They're not needed in postprocess.h

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
src/gallium/auxiliary/postprocess/filters.h
src/gallium/auxiliary/postprocess/postprocess.h

index 1aa1e3a639e948d062f8d2267d85d28975519eca..321f333a32674e24f3b0f77fc8825ce5876b8e1c 100644 (file)
 
 #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);
index c4b20301c68f0e5612934b85cf075052c6d59c05..1db581c66d980e614125b0c70a78076fe41469df 100644 (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 */