Sort effects by order
| 1213 | |
| 1214 | // Sort effects by order |
| 1215 | void Clip::sort_effects() |
| 1216 | { |
| 1217 | // sort clips |
| 1218 | effects.sort(CompareClipEffects()); |
| 1219 | } |
| 1220 | |
| 1221 | // Add an effect to the clip |
| 1222 | void Clip::AddEffect(EffectBase* effect) |
nothing calls this directly
no test coverage detected