From d44a9c942b4fa9169307a3637917a5d617c64a76 Mon Sep 17 00:00:00 2001 From: Niels De Graef Date: Sat, 11 May 2024 15:01:23 +0200 Subject: [PATCH] libgimpmath: Add missing (out) annotations --- libgimpmath/gimpvector.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libgimpmath/gimpvector.c b/libgimpmath/gimpvector.c index 0e75352463..03c57c2a6c 100644 --- a/libgimpmath/gimpvector.c +++ b/libgimpmath/gimpvector.c @@ -1092,8 +1092,8 @@ gimp_vector_2d_to_3d_val (gint sx, * @sy: the ordinate of the upper-left screen rectangle. * @w: the width of the screen rectangle. * @h: the height of the screen rectangle. - * @x: the abscissa of the point in the screen rectangle to map (return value). - * @y: the ordinate of the point in the screen rectangle to map (return value). + * @x: (out): the abscissa of the point in the screen rectangle to map. + * @y: (out): the ordinate of the point in the screen rectangle to map. * @vp: position of the observer. * @p: the 3D point to project to the plane. *