Mesa (master): tgsi: Gather cylindrical wrap info in tgsi_shader_info struct.

Michał Król michal at kemper.freedesktop.org
Tue Feb 9 14:35:32 UTC 2010


Module: Mesa
Branch: master
Commit: 607a830fe281bb042740ef5cd9ae99df73e19090
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=607a830fe281bb042740ef5cd9ae99df73e19090

Author: Michal Krol <michal at vmware.com>
Date:   Wed Feb  3 15:29:21 2010 +0100

tgsi: Gather cylindrical wrap info in tgsi_shader_info struct.

---

 src/gallium/auxiliary/tgsi/tgsi_scan.c |    1 +
 src/gallium/auxiliary/tgsi/tgsi_scan.h |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/gallium/auxiliary/tgsi/tgsi_scan.c b/src/gallium/auxiliary/tgsi/tgsi_scan.c
index b9be8dc..232fc53 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) {
diff --git a/src/gallium/auxiliary/tgsi/tgsi_scan.h b/src/gallium/auxiliary/tgsi/tgsi_scan.h
index dae5376..741aa7d 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_scan.h
+++ b/src/gallium/auxiliary/tgsi/tgsi_scan.h
@@ -45,6 +45,7 @@ struct tgsi_shader_info
    ubyte input_semantic_name[PIPE_MAX_SHADER_INPUTS]; /**< TGSI_SEMANTIC_x */
    ubyte input_semantic_index[PIPE_MAX_SHADER_INPUTS];
    ubyte input_interpolate[PIPE_MAX_SHADER_INPUTS];
+   ubyte input_cylindrical_wrap[PIPE_MAX_SHADER_INPUTS];
    ubyte output_semantic_name[PIPE_MAX_SHADER_OUTPUTS]; /**< TGSI_SEMANTIC_x */
    ubyte output_semantic_index[PIPE_MAX_SHADER_OUTPUTS];
 




More information about the mesa-commit mailing list