diff options
author | Francisco Jerez <[email protected]> | 2015-05-07 19:33:57 +0300 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2015-05-12 15:47:56 +0300 |
commit | 0db663503ea86579d3352fe83d428d573a8d2b03 (patch) | |
tree | 6a5c093e9657b03f53bc36db5af6abd7c6b7c5b3 /src/mesa | |
parent | cbf204069d00e99055a539e5f79566e2021fa8f4 (diff) |
i965: Don't forget the force_sechalf flag in lower_load_payload().
Regression from commit 41868bb6824c6106a55c8442006c1e2215abf567.
Fixes a bunch of ARB_shader_image_load_store tests.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 3414d92efde..08664cf328c 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -3507,6 +3507,7 @@ fs_visitor::lower_load_payload() fs_inst *mov = MOV(retype(dst, inst->src[i].type), inst->src[i]); mov->force_writemask_all = inst->force_writemask_all; + mov->force_sechalf = inst->force_sechalf; inst->insert_before(block, mov); } dst = offset(dst, 1); |