From: Marek Olšák Date: Sat, 2 Jan 2016 16:28:19 +0000 (+0100) Subject: tgsi/scan: fix tgsi_shader_info::reads_z X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=18ec76730a75b6fbc2783d6a84a844cb038456ff;p=mesa.git tgsi/scan: fix tgsi_shader_info::reads_z This has no users in Mesa. Reviewed-by: Nicolai Hähnle --- diff --git a/src/gallium/auxiliary/tgsi/tgsi_scan.c b/src/gallium/auxiliary/tgsi/tgsi_scan.c index e3feed9aa98..e3a6fb0437c 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_scan.c +++ b/src/gallium/auxiliary/tgsi/tgsi_scan.c @@ -187,8 +187,9 @@ tgsi_scan_shader(const struct tgsi_token *tokens, } if (procType == TGSI_PROCESSOR_FRAGMENT && - info->reads_position && - src->Register.Index == 0 && + !src->Register.Indirect && + info->input_semantic_name[src->Register.Index] == + TGSI_SEMANTIC_POSITION && (src->Register.SwizzleX == TGSI_SWIZZLE_Z || src->Register.SwizzleY == TGSI_SWIZZLE_Z || src->Register.SwizzleZ == TGSI_SWIZZLE_Z ||