OSDN Git Service

postprocess: remove const qualifiers on unsigned int parameters
authorBrian Paul <brianp@vmware.com>
Tue, 1 Nov 2011 17:34:51 +0000 (11:34 -0600)
committerBrian Paul <brianp@vmware.com>
Tue, 1 Nov 2011 22:39:37 +0000 (16:39 -0600)
to match the prototype in postprocess.h

src/gallium/auxiliary/postprocess/pp_init.c

index d5d64e8..ef127f8 100644 (file)
@@ -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 */