diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2008-04-17 14:19:03 +0100 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2008-04-17 14:23:13 +0100 |
commit | 938ec19210c5b4e19dcb2b606c9ade415f2c1f84 (patch) | |
tree | c1400be38b8d1ebe7fb4ac142dee16826689d938 /src/gallium/auxiliary/tgsi/exec | |
parent | 49becd2d7c751e563ce6be9051dd8e6dad88d1f7 (diff) |
tsgi: make Consts const
Diffstat (limited to 'src/gallium/auxiliary/tgsi/exec')
-rw-r--r-- | src/gallium/auxiliary/tgsi/exec/tgsi_exec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/exec/tgsi_exec.h b/src/gallium/auxiliary/tgsi/exec/tgsi_exec.h index 45c49dd007..92e2e5e985 100644 --- a/src/gallium/auxiliary/tgsi/exec/tgsi_exec.h +++ b/src/gallium/auxiliary/tgsi/exec/tgsi_exec.h @@ -166,7 +166,7 @@ struct tgsi_exec_machine float Imms[TGSI_EXEC_NUM_IMMEDIATES][4]; unsigned ImmLimit; - float (*Consts)[4]; + const float (*Consts)[4]; struct tgsi_exec_vector *Inputs; struct tgsi_exec_vector *Outputs; const struct tgsi_token *Tokens; |