panfrost: Constify the constants pointers passed to pan_blend functions

Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
Reviewed-by: Alyssa Rosenzweig <alyssa@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11139>
This commit is contained in:
Boris Brezillon
2021-05-19 09:49:28 +02:00
committed by Marge Bot
parent aefa40886b
commit 6d2ed635c3
2 changed files with 3 additions and 3 deletions

View File

@@ -90,7 +90,7 @@ pan_blend_constant_mask(const struct pan_blend_equation eq)
* valid for fixed-function, so check for this condition */ * valid for fixed-function, so check for this condition */
bool bool
pan_blend_is_homogenous_constant(unsigned mask, float *constants) pan_blend_is_homogenous_constant(unsigned mask, const float *constants)
{ {
float constant = pan_blend_get_constant(mask, constants); float constant = pan_blend_get_constant(mask, constants);

View File

@@ -112,7 +112,7 @@ pan_blend_constant_mask(const struct pan_blend_equation eq);
* just the first constant. */ * just the first constant. */
static inline float static inline float
pan_blend_get_constant(unsigned mask, float *constants) pan_blend_get_constant(unsigned mask, const float *constants)
{ {
return mask ? constants[ffs(mask) - 1] : 0.0; return mask ? constants[ffs(mask) - 1] : 0.0;
} }
@@ -128,7 +128,7 @@ pan_blend_supports_constant(unsigned arch, unsigned rt)
} }
bool bool
pan_blend_is_homogenous_constant(unsigned mask, float *constants); pan_blend_is_homogenous_constant(unsigned mask, const float *constants);
void void
pan_blend_to_fixed_function_equation(const struct pan_blend_equation eq, pan_blend_to_fixed_function_equation(const struct pan_blend_equation eq,