Use the right argument naming for alpha functions
The name of the argument in the header must match the name in the function implementation, for gtk-doc to work properly.
This commit is contained in:
parent
d2e244beb4
commit
82860b5d5a
@ -743,7 +743,7 @@ clutter_square_func (ClutterAlpha *alpha,
|
|||||||
*/
|
*/
|
||||||
guint32
|
guint32
|
||||||
clutter_smoothstep_inc_func (ClutterAlpha *alpha,
|
clutter_smoothstep_inc_func (ClutterAlpha *alpha,
|
||||||
gpointer *dummy)
|
gpointer dummy)
|
||||||
{
|
{
|
||||||
ClutterTimeline *timeline;
|
ClutterTimeline *timeline;
|
||||||
gint frame;
|
gint frame;
|
||||||
@ -790,7 +790,7 @@ clutter_smoothstep_inc_func (ClutterAlpha *alpha,
|
|||||||
*/
|
*/
|
||||||
guint32
|
guint32
|
||||||
clutter_smoothstep_dec_func (ClutterAlpha *alpha,
|
clutter_smoothstep_dec_func (ClutterAlpha *alpha,
|
||||||
gpointer *dummy)
|
gpointer dummy)
|
||||||
{
|
{
|
||||||
return CLUTTER_ALPHA_MAX_ALPHA - clutter_smoothstep_inc_func (alpha, dummy);
|
return CLUTTER_ALPHA_MAX_ALPHA - clutter_smoothstep_inc_func (alpha, dummy);
|
||||||
}
|
}
|
||||||
|
@ -134,9 +134,9 @@ guint32 clutter_sine_half_func (ClutterAlpha *alpha,
|
|||||||
guint32 clutter_square_func (ClutterAlpha *alpha,
|
guint32 clutter_square_func (ClutterAlpha *alpha,
|
||||||
gpointer dummy);
|
gpointer dummy);
|
||||||
guint32 clutter_smoothstep_inc_func (ClutterAlpha *alpha,
|
guint32 clutter_smoothstep_inc_func (ClutterAlpha *alpha,
|
||||||
gpointer *data);
|
gpointer dummy);
|
||||||
guint32 clutter_smoothstep_dec_func (ClutterAlpha *alpha,
|
guint32 clutter_smoothstep_dec_func (ClutterAlpha *alpha,
|
||||||
gpointer *data);
|
gpointer dummy);
|
||||||
guint32 clutter_exp_inc_func (ClutterAlpha *alpha,
|
guint32 clutter_exp_inc_func (ClutterAlpha *alpha,
|
||||||
gpointer dummy);
|
gpointer dummy);
|
||||||
guint32 clutter_exp_dec_func (ClutterAlpha *alpha,
|
guint32 clutter_exp_dec_func (ClutterAlpha *alpha,
|
||||||
|
Loading…
Reference in New Issue
Block a user