OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_currentFrame
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
RecordingImageBufferSurface.cpp
35
if (
m_currentFrame
) {
36
saved = saveState(
m_currentFrame
->getRecordingCanvas(), &stateStack);
42
m_currentFrame
= adoptPtr(new SkPictureRecorder);
43
m_currentFrame
->beginRecording(size().width(), size().height(), &rTreeFactory);
44
m_initialSaveCount =
m_currentFrame
->getRecordingCanvas()->getSaveCount();
46
m_imageBuffer->context()->resetCanvas(
m_currentFrame
->getRecordingCanvas());
51
setCurrentState(
m_currentFrame
->getRecordingCanvas(), &stateStack);
59
if (
m_currentFrame
&& m_imageBuffer) {
61
m_imageBuffer->context()->resetCanvas(
m_currentFrame
->getRecordingCanvas());
73
ASSERT(!
m_currentFrame
);
[
all
...]
BitmapImage.cpp
53
,
m_currentFrame
(0)
75
,
m_currentFrame
(0)
126
destroyMetadataAndNotify(m_source.clearCacheExceptFrame(destroyAll ? kNotFound :
m_currentFrame
));
286
orientation = frameOrientationAtIndex(
m_currentFrame
);
456
size_t nextFrame = (
m_currentFrame
+ 1) % frameCount();
464
if (!m_allDataReceived && repetitionCount(false) == cAnimationLoopOnce &&
m_currentFrame
>= (frameCount() - 1))
470
const double currentDuration = frameDurationAtIndex(
m_currentFrame
);
552
m_currentFrame
= 0;
589
++
m_currentFrame
;
591
if (
m_currentFrame
>= frameCount())
[
all
...]
RecordingImageBufferSurface.h
56
OwnPtr<SkPictureRecorder>
m_currentFrame
;
BitmapImage.h
108
size_t currentFrame() const { return
m_currentFrame
; }
170
size_t
m_currentFrame
; // The index of the current frame of animation.
BitmapImageTest.cpp
72
void setCurrentFrame(size_t frame) { m_image->
m_currentFrame
= frame; }
RecordingImageBufferSurfaceTest.cpp
198
EXPECT_EQ(displayListEnabled, (bool)m_testSurface->
m_currentFrame
.get());
Completed in 481 milliseconds