summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/tgsi
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-10-18 11:05:03 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-10-18 11:41:12 -0600
commitb21f4ac15fc190b474e1686d50a6992caed9c388 (patch)
tree4bb2408709f9daa29484b1d7384feb3e709911e6 /src/mesa/pipe/tgsi
parent2ae9f53c9d56ca1898d30cbd359c1fd31027ae6c (diff)
added const qualifiers
Diffstat (limited to 'src/mesa/pipe/tgsi')
-rwxr-xr-x[-rw-r--r--]src/mesa/pipe/tgsi/exec/tgsi_sse2.c4
-rwxr-xr-x[-rw-r--r--]src/mesa/pipe/tgsi/exec/tgsi_sse2.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/pipe/tgsi/exec/tgsi_sse2.c b/src/mesa/pipe/tgsi/exec/tgsi_sse2.c
index d840d64cae..d0d5719c93 100644..100755
--- a/src/mesa/pipe/tgsi/exec/tgsi_sse2.c
+++ b/src/mesa/pipe/tgsi/exec/tgsi_sse2.c
@@ -1824,7 +1824,7 @@ emit_declaration(
unsigned
tgsi_emit_sse2(
- struct tgsi_token *tokens,
+ const struct tgsi_token *tokens,
struct x86_function *func )
{
struct tgsi_parse_context parse;
@@ -1889,7 +1889,7 @@ tgsi_emit_sse2(
*/
unsigned
tgsi_emit_sse2_fs(
- struct tgsi_token *tokens,
+ const struct tgsi_token *tokens,
struct x86_function *func )
{
struct tgsi_parse_context parse;
diff --git a/src/mesa/pipe/tgsi/exec/tgsi_sse2.h b/src/mesa/pipe/tgsi/exec/tgsi_sse2.h
index 9bee371766..60fdd5f61f 100644..100755
--- a/src/mesa/pipe/tgsi/exec/tgsi_sse2.h
+++ b/src/mesa/pipe/tgsi/exec/tgsi_sse2.h
@@ -10,12 +10,12 @@ struct x86_function;
unsigned
tgsi_emit_sse2(
- struct tgsi_token *tokens,
+ const struct tgsi_token *tokens,
struct x86_function *function );
unsigned
tgsi_emit_sse2_fs(
- struct tgsi_token *tokens,
+ const struct tgsi_token *tokens,
struct x86_function *function );
#if defined __cplusplus