From: Kenneth Graunke Date: Tue, 18 Mar 2014 17:49:10 +0000 (-0700) Subject: i965: Actually initialize simd16_unsupported and no16_msg. X-Git-Tag: upstream/10.3~3002 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dd2e5d3999e456c33dbc9a710e211a7bdbe3330f;p=platform%2Fupstream%2Fmesa.git i965: Actually initialize simd16_unsupported and no16_msg. I meant to include this fixes in v3 of commit de7ad2c88f4ec243c95eaed22c41d0e537912e01, but accidentally pushed a previous version. Signed-off-by: Kenneth Graunke --- diff --git a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp index a832268..ce6d3da 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp @@ -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);