~fboucault/paf/documentation_fixes

« back to all changes in this revision

Viewing changes to paf/pafinterpolation.c

  • Committer: Guillaume Emont
  • Date: 2008-05-22 15:38:43 UTC
  • mfrom: (57.1.17 api-fixing)
  • Revision ID: guillaume@fluendo.com-20080522153843-qx418dc8hes14x1r
Merge with api-fixing.
  Added const and G_GNUC_NULL_TERMINATED where needed.
  Renamed "source" and "progression" to "fraction".

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
}
77
77
 
78
78
gboolean _paf_interpolation_update (PafInterpolation *interpolation,
79
 
                                    gfloat source)
 
79
                                    gfloat fraction)
80
80
{
81
81
    return FALSE;
82
82
}
189
189
void
190
190
paf_interpolation_add_key_value_from_value (
191
191
                                            PafInterpolation *interpolation,
192
 
                                            gfloat source,
 
192
                                            gfloat fraction,
193
193
                                            GValue *value)
194
194
{
195
195
}
197
197
void
198
198
paf_interpolation_add_key_value_from_float (
199
199
                                            PafInterpolation *interpolation,
200
 
                                            gfloat source,
 
200
                                            gfloat fraction,
201
201
                                            gfloat value)
202
202
{
203
203
}
205
205
void
206
206
paf_interpolation_add_key_value_from_int (
207
207
                                          PafInterpolation *interpolation,
208
 
                                          gfloat source,
 
208
                                          gfloat fraction,
209
209
                                          gint value)
210
210
{
211
211
}
219
219
void
220
220
paf_interpolation_remove_key_value_from_fraction (
221
221
                                             PafInterpolation *interpolation,
222
 
                                             gfloat value_source)
 
222
                                             gfloat fraction)
223
223
{
224
224
}
225
225
 
232
232
void
233
233
paf_interpolation_get_surrounding_key_values (
234
234
                                              PafInterpolation *interpolation,
235
 
                                              gfloat source,
 
235
                                              gfloat fraction,
236
236
                                              PafKeyValue **before,
237
237
                                              PafKeyValue **after)
238
238
{