mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-09 22:20:41 +00:00
Reviewers: rmalik Reviewed By: rmalik Differential Revision: https://phabricator.pinadmin.com/D82227
24 lines
433 B
Objective-C
24 lines
433 B
Objective-C
//
|
|
// ASImageNode+AnimatedImagePrivate.h
|
|
// Pods
|
|
//
|
|
// Created by Garrett Moon on 3/30/16.
|
|
//
|
|
//
|
|
|
|
@interface ASImageNode ()
|
|
{
|
|
ASDN::RecursiveMutex _animatedImageLock;
|
|
ASDN::Mutex _displayLinkLock;
|
|
ASAnimatedImage *_animatedImage;
|
|
CADisplayLink *_displayLink;
|
|
|
|
//accessed on main thread only
|
|
CFTimeInterval _playHead;
|
|
NSUInteger _playedLoops;
|
|
}
|
|
|
|
@property (atomic, assign) CFTimeInterval lastDisplayLinkFire;
|
|
|
|
@end
|