summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2012-08-12 18:36:52 +0200
committerMarek Olšák <maraeo@gmail.com>2012-08-16 20:44:53 +0200
commit362a25aac5f8cd71c08ad92b4b19be6712d8fd72 (patch)
treed06c0d228197ae6eb8c2beeab58118daecf53b48
parentc4993d15eb07d95ac465b5f25ea96072e4b008bf (diff)
r600g: remove unused parameter in r600_texture_create_object
-rw-r--r--src/gallium/drivers/r600/r600_texture.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gallium/drivers/r600/r600_texture.c b/src/gallium/drivers/r600/r600_texture.c
index d957b26f3dd..913cbb6cdcd 100644
--- a/src/gallium/drivers/r600/r600_texture.c
+++ b/src/gallium/drivers/r600/r600_texture.c
@@ -257,7 +257,6 @@ static const struct u_resource_vtbl r600_texture_vtbl =
static struct r600_resource_texture *
r600_texture_create_object(struct pipe_screen *screen,
const struct pipe_resource *base,
- unsigned array_mode,
unsigned pitch_in_bytes_override,
struct pb_buffer *buf,
boolean alloc_bo,
@@ -335,7 +334,7 @@ struct pipe_resource *r600_texture_create(struct pipe_screen *screen,
if (r) {
return NULL;
}
- return (struct pipe_resource *)r600_texture_create_object(screen, templ, array_mode,
+ return (struct pipe_resource *)r600_texture_create_object(screen, templ,
0, NULL, TRUE, &surface);
}
@@ -405,7 +404,7 @@ struct pipe_resource *r600_texture_from_handle(struct pipe_screen *screen,
if (r) {
return NULL;
}
- return (struct pipe_resource *)r600_texture_create_object(screen, templ, array_mode,
+ return (struct pipe_resource *)r600_texture_create_object(screen, templ,
stride, buf, FALSE, &surface);
}