diff options
author | José Fonseca <[email protected]> | 2009-04-18 23:06:11 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-04-18 23:15:26 +0100 |
commit | 876e95dcc83d05dfecb0dcb890f42af0a565e6a6 (patch) | |
tree | 94e52030934855e3f1753862292e6958725130b0 /src | |
parent | eb63e8cc75f7ac0f4b8b89ceecc030b61789ea8c (diff) |
softpipe: Fix softpipe_is_texture_referenced prototype.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_context.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/softpipe/sp_context.c b/src/gallium/drivers/softpipe/sp_context.c index 6ae4d1ad7be..2c6a0b53b0a 100644 --- a/src/gallium/drivers/softpipe/sp_context.c +++ b/src/gallium/drivers/softpipe/sp_context.c @@ -124,8 +124,7 @@ static void softpipe_destroy( struct pipe_context *pipe ) static unsigned int softpipe_is_texture_referenced( struct pipe_context *pipe, struct pipe_texture *texture, - unsigned face, unsigned level, - unsigned zslice) + unsigned face, unsigned level) { return PIPE_UNREFERENCED; } |