diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-10-18 11:05:03 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-10-18 11:41:12 -0600 |
commit | b21f4ac15fc190b474e1686d50a6992caed9c388 (patch) | |
tree | 4bb2408709f9daa29484b1d7384feb3e709911e6 /src/mesa | |
parent | 2ae9f53c9d56ca1898d30cbd359c1fd31027ae6c (diff) |
added const qualifiers
Diffstat (limited to 'src/mesa')
-rwxr-xr-x[-rw-r--r--] | src/mesa/pipe/tgsi/exec/tgsi_sse2.c | 4 | ||||
-rwxr-xr-x[-rw-r--r--] | src/mesa/pipe/tgsi/exec/tgsi_sse2.h | 4 |
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 |