diff options
| -rw-r--r-- | src/gallium/drivers/softpipe/sp_fs_exec.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/gallium/drivers/softpipe/sp_fs_exec.c b/src/gallium/drivers/softpipe/sp_fs_exec.c index ffc0c5e578..4fea71c314 100644 --- a/src/gallium/drivers/softpipe/sp_fs_exec.c +++ b/src/gallium/drivers/softpipe/sp_fs_exec.c @@ -42,13 +42,13 @@  struct sp_exec_fragment_shader  {     struct sp_fragment_shader base; -   struct tgsi_token *machine_tokens; +   const struct tgsi_token *machine_tokens;  };  /** cast wrapper */  static INLINE struct sp_exec_fragment_shader * -sp_exec_fragment_shader(struct sp_fragment_shader *base) +sp_exec_fragment_shader(const struct sp_fragment_shader *base)  {     return (struct sp_exec_fragment_shader *) base;  } | 
