diff options
author | Samuel Pitoiset <[email protected]> | 2017-03-30 18:55:02 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-04-03 11:29:18 +0200 |
commit | 90534e9dba5895c74bcd328a3e5248d06503c8b3 (patch) | |
tree | 0cb482bc2240d38cdd2407697d501201dc6511ee /src/mesa/state_tracker/st_format.h | |
parent | 8d919ba3846aa5cd9dc85e0bdb98e71292ed9c97 (diff) |
st/mesa: make 'st' const in st_mesa_format_to_pipe_format()
This avoids a compilation warning since st_convert_image()
requires 'st' to be const.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_format.h')
-rw-r--r-- | src/mesa/state_tracker/st_format.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_format.h b/src/mesa/state_tracker/st_format.h index 6ba61df7e4e..3dd9c10341a 100644 --- a/src/mesa/state_tracker/st_format.h +++ b/src/mesa/state_tracker/st_format.h @@ -45,7 +45,7 @@ struct pipe_screen; extern enum pipe_format -st_mesa_format_to_pipe_format(struct st_context *st, mesa_format mesaFormat); +st_mesa_format_to_pipe_format(const struct st_context *st, mesa_format mesaFormat); extern mesa_format st_pipe_format_to_mesa_format(enum pipe_format pipeFormat); |