swrast: remove explicit size from texfetch_funcs array

By removing the array size, the static assertion to check for missing
elements can do its job properly.  This will catch cases where a new
Mesa format is added but the swrast texfetch code isn't updated.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Brian Paul 2012-10-30 09:39:20 -06:00
parent f69fc36127
commit fc2cf14038
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ static struct {
FetchTexelFunc Fetch2D;
FetchTexelFunc Fetch3D;
}
texfetch_funcs[MESA_FORMAT_COUNT] =
texfetch_funcs[] =
{
{
MESA_FORMAT_NONE,