diff options
author | Kenneth Graunke <[email protected]> | 2014-03-18 10:49:10 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-03-18 10:50:48 -0700 |
commit | dd2e5d3999e456c33dbc9a710e211a7bdbe3330f (patch) | |
tree | 8a5b67cd6667e157487fb7b75cd75162869aead1 /src | |
parent | 91f4528da620de6518db8f85e6a08c88687d0269 (diff) |
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 <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_visitor.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp index a83226883ee..ce6d3dad1e5 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); |