tgsi: add const qualifier to tokens on sse emit
authorKeith Whitwell <keith@tungstengraphics.com>
Fri, 18 Apr 2008 16:35:32 +0000 (17:35 +0100)
committerKeith Whitwell <keith@tungstengraphics.com>
Fri, 18 Apr 2008 17:32:37 +0000 (18:32 +0100)
src/gallium/auxiliary/tgsi/exec/tgsi_sse2.c
src/gallium/auxiliary/tgsi/exec/tgsi_sse2.h

index c37e201b2bc186b8bd129ff6e5666e8eb0d32fc3..0a3a7559ca4927459d472897487e6bb5aeed514e 100755 (executable)
@@ -2332,7 +2332,7 @@ emit_declaration(
  */
 unsigned
 tgsi_emit_sse2(
-   struct tgsi_token *tokens,
+   const struct tgsi_token *tokens,
    struct x86_function *func,
    float (*immediates)[4])
 {
index d56bf7f98ab2205bcc6d5860360bf1d91c6977e3..063287dc5e9c84c6ce09d1aa01196db383c6e1c5 100755 (executable)
@@ -10,7 +10,7 @@ struct x86_function;
 
 unsigned
 tgsi_emit_sse2(
-   struct tgsi_token *tokens,
+   const struct tgsi_token *tokens,
    struct x86_function *function,
    float (*immediates)[4]
  );