tgsi: fix incomplete rename of loop counter variable

This commit is contained in:
Keith Whitwell
2008-12-23 18:16:49 +00:00
parent f5d4274b4a
commit fc4cea08fe
+1 -1
View File
@@ -124,7 +124,7 @@ tgsi_scan_shader(const struct tgsi_token *tokens,
/* only first 32 regs will appear in this bitfield */
info->file_mask[file] |= (1 << reg);
info->file_count[file]++;
info->file_max[file] = MAX2(info->file_max[file], (int)i);
info->file_max[file] = MAX2(info->file_max[file], (int)reg);
if (file == TGSI_FILE_INPUT) {
info->input_semantic_name[reg] = (ubyte)fulldecl->Semantic.SemanticName;