OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008, 2009, 2010, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009, 2010, 2012 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 11 matching lines...) Expand all Loading... |
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF | 22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
23 * THE POSSIBILITY OF SUCH DAMAGE. | 23 * THE POSSIBILITY OF SUCH DAMAGE. |
24 */ | 24 */ |
25 | 25 |
26 #include "config.h" | 26 #include "config.h" |
27 #include "GeneratorGeneratedImage.h" | 27 #include "GeneratorGeneratedImage.h" |
28 | 28 |
29 #include "FloatRect.h" | 29 #include "FloatRect.h" |
30 #include "GraphicsContext.h" | 30 #include "GraphicsContext.h" |
31 #include "Length.h" | 31 #include "Length.h" |
32 #include "PlatformMemoryInstrumentation.h" | |
33 | 32 |
34 namespace WebCore { | 33 namespace WebCore { |
35 | 34 |
36 void GeneratorGeneratedImage::draw(GraphicsContext* destContext, const FloatRect
& destRect, const FloatRect& srcRect, ColorSpace, CompositeOperator compositeOp,
BlendMode) | 35 void GeneratorGeneratedImage::draw(GraphicsContext* destContext, const FloatRect
& destRect, const FloatRect& srcRect, ColorSpace, CompositeOperator compositeOp,
BlendMode) |
37 { | 36 { |
38 GraphicsContextStateSaver stateSaver(*destContext); | 37 GraphicsContextStateSaver stateSaver(*destContext); |
39 destContext->setCompositeOperation(compositeOp); | 38 destContext->setCompositeOperation(compositeOp); |
40 destContext->clip(destRect); | 39 destContext->clip(destRect); |
41 destContext->translate(destRect.x(), destRect.y()); | 40 destContext->translate(destRect.x(), destRect.y()); |
42 if (destRect.size() != srcRect.size()) | 41 if (destRect.size() != srcRect.size()) |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 m_cachedImageBuffer->drawPattern(destContext, adjustedSrcRect, adjustedPatte
rnCTM, phase, styleColorSpace, compositeOp, destRect); | 78 m_cachedImageBuffer->drawPattern(destContext, adjustedSrcRect, adjustedPatte
rnCTM, phase, styleColorSpace, compositeOp, destRect); |
80 m_cacheTimer.restart(); | 79 m_cacheTimer.restart(); |
81 } | 80 } |
82 | 81 |
83 void GeneratorGeneratedImage::invalidateCacheTimerFired(DeferrableOneShotTimer<G
eneratorGeneratedImage>*) | 82 void GeneratorGeneratedImage::invalidateCacheTimerFired(DeferrableOneShotTimer<G
eneratorGeneratedImage>*) |
84 { | 83 { |
85 m_cachedImageBuffer.clear(); | 84 m_cachedImageBuffer.clear(); |
86 m_cachedAdjustedSize = IntSize(); | 85 m_cachedAdjustedSize = IntSize(); |
87 } | 86 } |
88 | 87 |
89 void GeneratorGeneratedImage::reportMemoryUsage(MemoryObjectInfo* memoryObjectIn
fo) const | |
90 { | |
91 MemoryClassInfo info(memoryObjectInfo, this, PlatformMemoryTypes::Image); | |
92 GeneratedImage::reportMemoryUsage(memoryObjectInfo); | |
93 info.addMember(m_generator, "generator"); | |
94 info.addMember(m_cachedImageBuffer, "cachedImageBuffer"); | |
95 info.addMember(m_cacheTimer, "cacheTimer"); | |
96 } | 88 } |
97 | |
98 } | |
OLD | NEW |