diff options
author | Henri Verbeet <hverbeet@gmail.com> | 2011-07-05 01:58:46 +0200 |
---|---|---|
committer | Henri Verbeet <hverbeet@gmail.com> | 2011-07-05 01:58:46 +0200 |
commit | 865f9272189697932d96a318f60efb99344ab944 (patch) | |
tree | 6ebedc00402c139568d6b86329b2da31c474358a /src/gallium/drivers/r600 | |
parent | f67de2ed468ecbd09085746130a27bd2c2da911d (diff) |
r600g: Get rid of the unused "family" parameter to r600_is_vertex_format_supported().
Signed-off-by: Henri Verbeet <hverbeet@gmail.com>
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.c | 10 | ||||
-rw-r--r-- | src/gallium/drivers/r600/r600_state_inlines.h | 3 |
2 files changed, 4 insertions, 9 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index 8f3a175587e..ac41449a301 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -547,13 +547,9 @@ static boolean r600_is_format_supported(struct pipe_screen* screen, retval |= PIPE_BIND_DEPTH_STENCIL; } - if (usage & PIPE_BIND_VERTEX_BUFFER) { - struct r600_screen *rscreen = (struct r600_screen *)screen; - enum radeon_family family = r600_get_family(rscreen->radeon); - - if (r600_is_vertex_format_supported(format, family)) { - retval |= PIPE_BIND_VERTEX_BUFFER; - } + if ((usage & PIPE_BIND_VERTEX_BUFFER) && + r600_is_vertex_format_supported(format)) { + retval |= PIPE_BIND_VERTEX_BUFFER; } if (usage & PIPE_BIND_TRANSFER_READ) diff --git a/src/gallium/drivers/r600/r600_state_inlines.h b/src/gallium/drivers/r600/r600_state_inlines.h index eb6fb6594b2..71852543e56 100644 --- a/src/gallium/drivers/r600/r600_state_inlines.h +++ b/src/gallium/drivers/r600/r600_state_inlines.h @@ -576,8 +576,7 @@ static INLINE boolean r600_is_zs_format_supported(enum pipe_format format) return r600_translate_dbformat(format) != ~0; } -static INLINE boolean r600_is_vertex_format_supported(enum pipe_format format, - enum radeon_family family) +static INLINE boolean r600_is_vertex_format_supported(enum pipe_format format) { unsigned i; const struct util_format_description *desc = util_format_description(format); |