diff options
author | Francisco Jerez <[email protected]> | 2015-02-05 12:20:03 +0200 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2015-02-23 20:55:40 +0200 |
commit | 34c93fd7f119fa824062e05377de849b8a2da0e6 (patch) | |
tree | ef8f7abc50052a6b593886c43a4988af8c4caabe /src | |
parent | ea7b4d25c8da352f4ca0dcaefa4fadb9e202636e (diff) |
i965/fs: Fix lower_load_payload() not to use an incorrect half for immediates and uniforms.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 4fa67901757..9df16507125 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -3173,6 +3173,14 @@ fs_visitor::lower_load_payload() inst->src[i].reg_offset; mov->force_sechalf = metadata[src_reg].force_sechalf; mov->force_writemask_all = metadata[src_reg].force_writemask_all; + } else { + /* We don't have any useful metadata for immediates or + * uniforms. Assume that any of the channels of the + * destination may be used. + */ + assert(inst->src[i].file == IMM || + inst->src[i].file == UNIFORM); + mov->force_writemask_all = true; } if (dst.file == GRF) { |