tgsi: fix warning: ‘interp’ may be used uninitialized

Reviewed-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
Marek Olšák 2019-07-22 15:59:22 -04:00
parent f257ef2bbb
commit 850619117e

View file

@ -3087,6 +3087,7 @@ exec_declaration(struct tgsi_exec_machine *mach,
case TGSI_INTERPOLATE_COLOR:
eval = mach->flatshade_color ? eval_constant_coef : eval_perspective_coef;
interp = mach->flatshade_color ? interp_constant_offset : interp_perspective_offset;
break;
default: