From: Keith Whitwell Date: Thu, 17 Apr 2008 13:19:03 +0000 (+0100) Subject: tsgi: make Consts const X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=938ec19210c5b4e19dcb2b606c9ade415f2c1f84;p=mesa.git tsgi: make Consts const --- diff --git a/src/gallium/auxiliary/tgsi/exec/tgsi_exec.h b/src/gallium/auxiliary/tgsi/exec/tgsi_exec.h index 45c49dd007c..92e2e5e9859 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;