OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:frameDurationAtIndex
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageSource.cpp
138
float ImageSource::
frameDurationAtIndex
(size_t index) const
147
const float duration = m_decoder->
frameDurationAtIndex
(index) / 1000.0f;
BitmapImage.cpp
165
m_frames[index].m_duration = m_source.
frameDurationAtIndex
(index);
367
float BitmapImage::
frameDurationAtIndex
(size_t index)
372
return m_source.
frameDurationAtIndex
(index);
470
const double currentDuration =
frameDurationAtIndex
(m_currentFrame);
504
double frameAfterNextStartTime = m_desiredFrameStartTime +
frameDurationAtIndex
(nextFrame);
DeferredImageDecoder.cpp
183
float DeferredImageDecoder::
frameDurationAtIndex
(size_t index) const
186
return m_actualDecoder->
frameDurationAtIndex
(index);
236
frame->setDuration(m_actualDecoder->
frameDurationAtIndex
(i));
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoder.cpp
129
float GIFImageDecoder::
frameDurationAtIndex
(size_t index) const
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageDecoder.h
165
virtual float
frameDurationAtIndex
(size_t) const { return 0; }
Completed in 282 milliseconds