Module: Mesa Branch: master Commit: 3db52b6e36981b89c53795287b64983ad3d02d16 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=3db52b6e36981b89c53795287b64983ad3d02d16
Author: Chia-I Wu <[email protected]> Date: Mon Sep 30 14:12:19 2013 +0800 i965: allow SIMD8 sampler messages in SIMD16 mode When the instruction to send the sampler message is forced uncompressed or sechalf, send SIMD8 one even in SIMD16 mode. Signed-off-by: Chia-I Wu <[email protected]> Reviewed-by: Eric Anholt <[email protected]> --- src/mesa/drivers/dri/i965/brw_fs_generator.cpp | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_fs_generator.cpp b/src/mesa/drivers/dri/i965/brw_fs_generator.cpp index 4159773..dbfbc11 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_generator.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_generator.cpp @@ -381,7 +381,8 @@ fs_generator::generate_tex(fs_inst *inst, struct brw_reg dst, struct brw_reg src break; } - if (dispatch_width == 16) + if (dispatch_width == 16 && + !inst->force_uncompressed && !inst->force_sechalf) simd_mode = BRW_SAMPLER_SIMD_MODE_SIMD16; if (brw->gen >= 5) { _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
