aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/postprocess
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2011-11-01 11:34:51 -0600
committerBrian Paul <[email protected]>2011-11-01 16:39:37 -0600
commitf6fa34f7ada52cfe4c811e12ba7e4eef84ba7ca1 (patch)
treea8c03515937e8eaa2780a56fec11aaeb03047fb7 /src/gallium/auxiliary/postprocess
parent45568faba25c503b59018b8b414f5751c83b1d88 (diff)
postprocess: remove const qualifiers on unsigned int parameters
to match the prototype in postprocess.h
Diffstat (limited to 'src/gallium/auxiliary/postprocess')
-rw-r--r--src/gallium/auxiliary/postprocess/pp_init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/postprocess/pp_init.c b/src/gallium/auxiliary/postprocess/pp_init.c
index d5d64e88ee6..ef127f8d76e 100644
--- a/src/gallium/auxiliary/postprocess/pp_init.c
+++ b/src/gallium/auxiliary/postprocess/pp_init.c
@@ -194,8 +194,8 @@ pp_debug(const char *fmt, ...)
/** Allocate the temp FBOs. Called on makecurrent and resize. */
void
-pp_init_fbos(struct pp_queue_t *ppq, const unsigned int w,
- const unsigned int h, struct pipe_resource *indepth)
+pp_init_fbos(struct pp_queue_t *ppq, unsigned int w,
+ unsigned int h, struct pipe_resource *indepth)
{
struct program *p = ppq->p; /* The lazy will inherit the earth */