summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/tgsi/tgsi_scan.c
diff options
context:
space:
mode:
authorMichal Krol <michal@vmware.com>2010-02-03 15:29:21 +0100
committerMichal Krol <michal@vmware.com>2010-02-09 15:29:46 +0100
commit607a830fe281bb042740ef5cd9ae99df73e19090 (patch)
tree9b6be75d186e34a833870d6e2be77caa79c4c8f6 /src/gallium/auxiliary/tgsi/tgsi_scan.c
parent33a9fb35dd4c74945840ce1e1b496c43ecfc92de (diff)
tgsi: Gather cylindrical wrap info in tgsi_shader_info struct.
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_scan.c')
-rw-r--r--src/gallium/auxiliary/tgsi/tgsi_scan.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_scan.c b/src/gallium/auxiliary/tgsi/tgsi_scan.c
index b9be8dc0a3..232fc537c1 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_scan.c
+++ b/src/gallium/auxiliary/tgsi/tgsi_scan.c
@@ -131,6 +131,7 @@ tgsi_scan_shader(const struct tgsi_token *tokens,
info->input_semantic_name[reg] = (ubyte)fulldecl->Semantic.Name;
info->input_semantic_index[reg] = (ubyte)fulldecl->Semantic.Index;
info->input_interpolate[reg] = (ubyte)fulldecl->Declaration.Interpolate;
+ info->input_cylindrical_wrap[reg] = (ubyte)fulldecl->Declaration.CylindricalWrap;
info->num_inputs++;
}
else if (file == TGSI_FILE_OUTPUT) {