diff options
author | Pekka Paalanen <pq@iki.fi> | 2008-11-30 20:32:14 +0200 |
---|---|---|
committer | Pekka Paalanen <pq@iki.fi> | 2008-11-30 20:32:14 +0200 |
commit | fd645c7f8a0394d5d4e10ff3beaf5957254e6559 (patch) | |
tree | 563f38955ef63f3280bff900016a1d97482faaa3 | |
parent | 578af7d6f61be4ef4487cdb58108dddd91444e21 (diff) |
Nouveau: fix minor API change in surface_copy
Signed-off-by: Pekka Paalanen <pq@iki.fi>
-rw-r--r-- | src/gallium/drivers/nv04/nv04_surface.c | 2 | ||||
-rw-r--r-- | src/gallium/drivers/nv10/nv10_surface.c | 2 | ||||
-rw-r--r-- | src/gallium/drivers/nv20/nv20_surface.c | 2 | ||||
-rw-r--r-- | src/gallium/drivers/nv30/nv30_surface.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/nv04/nv04_surface.c b/src/gallium/drivers/nv04/nv04_surface.c index 57039483c..9d9943ed4 100644 --- a/src/gallium/drivers/nv04/nv04_surface.c +++ b/src/gallium/drivers/nv04/nv04_surface.c @@ -33,7 +33,7 @@ #include "util/u_tile.h" static void -nv04_surface_copy(struct pipe_context *pipe, unsigned do_flip, +nv04_surface_copy(struct pipe_context *pipe, boolean do_flip, struct pipe_surface *dest, unsigned destx, unsigned desty, struct pipe_surface *src, unsigned srcx, unsigned srcy, unsigned width, unsigned height) diff --git a/src/gallium/drivers/nv10/nv10_surface.c b/src/gallium/drivers/nv10/nv10_surface.c index 875e4c585..be44c7bed 100644 --- a/src/gallium/drivers/nv10/nv10_surface.c +++ b/src/gallium/drivers/nv10/nv10_surface.c @@ -33,7 +33,7 @@ #include "util/u_tile.h" static void -nv10_surface_copy(struct pipe_context *pipe, unsigned do_flip, +nv10_surface_copy(struct pipe_context *pipe, boolean do_flip, struct pipe_surface *dest, unsigned destx, unsigned desty, struct pipe_surface *src, unsigned srcx, unsigned srcy, unsigned width, unsigned height) diff --git a/src/gallium/drivers/nv20/nv20_surface.c b/src/gallium/drivers/nv20/nv20_surface.c index 41b6d6ad3..7bc68d0ca 100644 --- a/src/gallium/drivers/nv20/nv20_surface.c +++ b/src/gallium/drivers/nv20/nv20_surface.c @@ -33,7 +33,7 @@ #include "util/u_tile.h" static void -nv20_surface_copy(struct pipe_context *pipe, unsigned do_flip, +nv20_surface_copy(struct pipe_context *pipe, boolean do_flip, struct pipe_surface *dest, unsigned destx, unsigned desty, struct pipe_surface *src, unsigned srcx, unsigned srcy, unsigned width, unsigned height) diff --git a/src/gallium/drivers/nv30/nv30_surface.c b/src/gallium/drivers/nv30/nv30_surface.c index 36f488775..d3376a73b 100644 --- a/src/gallium/drivers/nv30/nv30_surface.c +++ b/src/gallium/drivers/nv30/nv30_surface.c @@ -34,7 +34,7 @@ #include "util/u_tile.h" static void -nv30_surface_copy(struct pipe_context *pipe, unsigned do_flip, +nv30_surface_copy(struct pipe_context *pipe, boolean do_flip, struct pipe_surface *dest, unsigned destx, unsigned desty, struct pipe_surface *src, unsigned srcx, unsigned srcy, unsigned width, unsigned height) |