Module: Mesa Branch: gles3 Commit: 12829eec1f0c27d94520ce2ebdea6bdc12b8a596 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=12829eec1f0c27d94520ce2ebdea6bdc12b8a596
Author: Chad Versace <[email protected]> Date: Thu Jan 24 21:48:40 2013 -0800 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]> --- 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 27c5302..d9ed27c 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); } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
