diff options
author | Chad Versace <[email protected]> | 2013-01-24 21:48:40 -0800 |
---|---|---|
committer | Chad Versace <[email protected]> | 2013-01-24 21:51:06 -0800 |
commit | 0974031f88c31458792864b2f3a46ff885607ab1 (patch) | |
tree | 73e97a7a4466817c15c700b37ea3c4eb54eb20a0 /src/mesa/drivers/dri/i965/brw_fs_emit.cpp | |
parent | 20dfa501b3950c1d2f5da7126091792f5eb67038 (diff) |
i965/fs/gen7: Fix fatal typo in unpackHalf2x16
s/src/src_w/
That little typo, which sneaked into v4 of the previous patch, generates
incorrect fs code.
Signed-off-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs_emit.cpp')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_emit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_emit.cpp b/src/mesa/drivers/dri/i965/brw_fs_emit.cpp index 27c5302b9f5..d9ed27cf0ab 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_emit.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_emit.cpp @@ -1006,7 +1006,7 @@ fs_generator::generate_unpack_half_2x16_split(fs_inst *inst, assert(inst->opcode == FS_OPCODE_UNPACK_HALF_2x16_SPLIT_X || inst->opcode == FS_OPCODE_UNPACK_HALF_2x16_SPLIT_Y); if (inst->opcode == FS_OPCODE_UNPACK_HALF_2x16_SPLIT_Y) - src.subnr += 2; + src_w.subnr += 2; brw_F16TO32(p, dst, src_w); } |