From: Brian Paul Date: Tue, 1 Nov 2011 17:34:51 +0000 (-0600) Subject: postprocess: remove const qualifiers on unsigned int parameters X-Git-Tag: mesa-8.0-rc1~1327 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f6fa34f7ada52cfe4c811e12ba7e4eef84ba7ca1;p=platform%2Fupstream%2Fmesa.git postprocess: remove const qualifiers on unsigned int parameters to match the prototype in postprocess.h --- diff --git a/src/gallium/auxiliary/postprocess/pp_init.c b/src/gallium/auxiliary/postprocess/pp_init.c index d5d64e8..ef127f8 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 */