softpipe: fix min/mag filter typo

This commit is contained in:
Brian Paul 2009-08-21 11:41:29 -06:00
parent 4e5c385d21
commit 41483627f0
1 changed files with 1 additions and 1 deletions

View File

@ -1597,7 +1597,7 @@ sp_create_sampler_varient( const struct pipe_sampler_state *sampler,
samp->compute_lambda = get_lambda_func( key );
samp->min_img_filter = get_img_filter(key, sampler->min_img_filter, sampler);
samp->mag_img_filter = get_img_filter(key, sampler->min_img_filter, sampler);
samp->mag_img_filter = get_img_filter(key, sampler->mag_img_filter, sampler);
switch (sampler->min_mip_filter) {
case PIPE_TEX_MIPFILTER_NONE: