added const qualifiers
authorBrian <brian.paul@tungstengraphics.com>
Thu, 18 Oct 2007 17:05:03 +0000 (11:05 -0600)
committerBrian <brian.paul@tungstengraphics.com>
Thu, 18 Oct 2007 17:41:12 +0000 (11:41 -0600)
src/mesa/pipe/tgsi/exec/tgsi_sse2.c [changed mode: 0644->0755]
src/mesa/pipe/tgsi/exec/tgsi_sse2.h [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index d840d64..d0d5719
@@ -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;
old mode 100644 (file)
new mode 100755 (executable)
index 9bee371..60fdd5f
@@ -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