i965: Actually initialize simd16_unsupported and no16_msg.

I meant to include this fixes in v3 of commit
de7ad2c88f, but accidentally pushed a
previous version.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Kenneth Graunke 2014-03-18 10:49:10 -07:00
parent 91f4528da6
commit dd2e5d3999
1 changed files with 2 additions and 0 deletions

View File

@ -2950,6 +2950,8 @@ fs_visitor::fs_visitor(struct brw_context *brw,
this->fp = fp;
this->mem_ctx = ralloc_context(NULL);
this->failed = false;
this->simd16_unsupported = false;
this->no16_msg = NULL;
this->variable_ht = hash_table_ctor(0,
hash_table_pointer_hash,
hash_table_pointer_compare);