Home | History | Annotate | Download | only in animation

Lines Matching refs:ShadowData

136 static inline ShadowData* blendFunc(const AnimationBase* anim, const ShadowData* from, const ShadowData* to, double progress)
139 return new ShadowData(blendFunc(anim, from->x, to->x, progress), blendFunc(anim, from->y, to->y, progress),
300 class PropertyWrapperShadow : public PropertyWrapperGetter<ShadowData*> {
302 PropertyWrapperShadow(int prop, ShadowData* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(ShadowData*, bool))
303 : PropertyWrapperGetter<ShadowData*>(prop, getter)
310 ShadowData* shadowA = (a->*m_getter)();
311 ShadowData* shadowB = (b->*m_getter)();
332 ShadowData* shadowA = (a->*m_getter)();
333 ShadowData* shadowB = (b->*m_getter)();
334 ShadowData defaultShadowData(0, 0, 0, 0, Normal, Color::transparent);
336 ShadowData* newShadowData = 0;
339 ShadowData* srcShadow = shadowA ? shadowA : &defaultShadowData;
340 ShadowData* dstShadow = shadowB ? shadowB : &defaultShadowData;
355 void (RenderStyle::*m_setter)(ShadowData*, bool);