mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
postprocess: remove const qualifiers on unsigned int parameters
to match the prototype in postprocess.h
This commit is contained in:
parent
45568faba2
commit
f6fa34f7ad
1 changed files with 2 additions and 2 deletions
|
|
@ -194,8 +194,8 @@ pp_debug(const char *fmt, ...)
|
||||||
|
|
||||||
/** Allocate the temp FBOs. Called on makecurrent and resize. */
|
/** Allocate the temp FBOs. Called on makecurrent and resize. */
|
||||||
void
|
void
|
||||||
pp_init_fbos(struct pp_queue_t *ppq, const unsigned int w,
|
pp_init_fbos(struct pp_queue_t *ppq, unsigned int w,
|
||||||
const unsigned int h, struct pipe_resource *indepth)
|
unsigned int h, struct pipe_resource *indepth)
|
||||||
{
|
{
|
||||||
|
|
||||||
struct program *p = ppq->p; /* The lazy will inherit the earth */
|
struct program *p = ppq->p; /* The lazy will inherit the earth */
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue