Lines Matching refs:animation
409 Animation animation; in movie() local
422 animation.width = width; in movie()
423 animation.height = height; in movie()
424 animation.fps = fps; in movie()
433 animation.parts.add(part); in movie()
440 const size_t pcount = animation.parts.size(); in movie()
450 if (path == animation.parts[j].path) { in movie()
460 Animation::Part& part(animation.parts.editItemAt(j)); in movie()
489 const int xc = (mWidth - animation.width) / 2; in movie()
490 const int yc = ((mHeight - animation.height) / 2); in movie()
492 nsecs_t frameDuration = s2ns(1) / animation.fps; in movie()
495 clearReg.subtractSelf(Rect(xc, yc, xc+animation.width, yc+animation.height)); in movie()
498 const Animation::Part& part(animation.parts[i]); in movie()
537 glDrawTexiOES(xc, yc, 0, animation.width, animation.height); in movie()