summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/trace/trace.xsl
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-08-09 11:52:53 +0100
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-08-09 14:10:25 +0100
commit696067e781977ad54bb31b3843355701124f1b22 (patch)
treecd5e9420eb109c817060295e021576434be87663 /src/gallium/drivers/trace/trace.xsl
parent673489fa5cde4ce8d49918f20f007201a17bc45e (diff)
trace: Dump shaders as text.
Diffstat (limited to 'src/gallium/drivers/trace/trace.xsl')
-rw-r--r--src/gallium/drivers/trace/trace.xsl40
1 files changed, 39 insertions, 1 deletions
diff --git a/src/gallium/drivers/trace/trace.xsl b/src/gallium/drivers/trace/trace.xsl
index 991e5bf935..9cd621e7ab 100644
--- a/src/gallium/drivers/trace/trace.xsl
+++ b/src/gallium/drivers/trace/trace.xsl
@@ -109,7 +109,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<xsl:template match="string">
<span class="lit">
<xsl:text>"</xsl:text>
- <xsl:value-of select="text()"/>
+ <xsl:call-template name="break">
+ <xsl:with-param name="text" select="text()"/>
+ </xsl:call-template>
<xsl:text>"</xsl:text>
</span>
</xsl:template>
@@ -144,4 +146,40 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<xsl:value-of select="."/>
</span>
</xsl:template>
+
+ <xsl:template name="break">
+ <xsl:param name="text" select="."/>
+ <xsl:choose>
+ <xsl:when test="contains($text, '&#xa;')">
+ <xsl:value-of select="substring-before($text, '&#xa;')"/>
+ <br/>
+ <xsl:call-template name="break">
+ <xsl:with-param name="text" select="substring-after($text, '&#xa;')"/>
+ </xsl:call-template>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$text"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:template>
+
+ <xsl:template name="replace">
+ <xsl:param name="text"/>
+ <xsl:param name="from"/>
+ <xsl:param name="to"/>
+ <xsl:choose>
+ <xsl:when test="contains($text,$from)">
+ <xsl:value-of select="concat(substring-before($text,$from),$to)"/>
+ <xsl:call-template name="replace">
+ <xsl:with-param name="text" select="substring-after($text,$from)"/>
+ <xsl:with-param name="from" select="$from"/>
+ <xsl:with-param name="to" select="$to"/>
+ </xsl:call-template>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$text"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:template>
+
</xsl:transform>