From 62edc31d3433a9fded71e92d4168bcbf61c5b4bd Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 28 Nov 2018 16:21:24 +1100 Subject: Cleanup: correct function signatures --- source/blender/blenlib/BLI_math_color.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenlib') diff --git a/source/blender/blenlib/BLI_math_color.h b/source/blender/blenlib/BLI_math_color.h index 72d29164988..3653191232c 100644 --- a/source/blender/blenlib/BLI_math_color.h +++ b/source/blender/blenlib/BLI_math_color.h @@ -112,7 +112,7 @@ void BLI_init_srgb_conversion(void); MINLINE void premul_to_straight_v4_v4(float straight[4], const float premul[4]); MINLINE void premul_to_straight_v4(float color[4]); -MINLINE void straight_to_premul_v4_v4(float straight[4], const float premul[4]); +MINLINE void straight_to_premul_v4_v4(float premul[4], const float straight[4]); MINLINE void straight_to_premul_v4(float color[4]); MINLINE void straight_uchar_to_premul_float(float result[4], const unsigned char color[4]); MINLINE void premul_float_to_straight_uchar(unsigned char *result, const float color[4]); -- cgit v1.2.3