| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008, 2012 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2008, 2012 Apple Computer, 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 } | 46 } |
| 47 | 47 |
| 48 virtual ~GeneratorGeneratedImage() | 48 virtual ~GeneratorGeneratedImage() |
| 49 { | 49 { |
| 50 m_cacheTimer.stop(); | 50 m_cacheTimer.stop(); |
| 51 } | 51 } |
| 52 | 52 |
| 53 virtual void reportMemoryUsage(MemoryObjectInfo*) const OVERRIDE; | 53 virtual void reportMemoryUsage(MemoryObjectInfo*) const OVERRIDE; |
| 54 | 54 |
| 55 protected: | 55 protected: |
| 56 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRec
t& srcRect, ColorSpace styleColorSpace, CompositeOperator, BlendMode); | 56 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRec
t& srcRect, CompositeOperator, BlendMode); |
| 57 virtual void drawPattern(GraphicsContext*, const FloatRect& srcRect, const A
ffineTransform& patternTransform, | 57 virtual void drawPattern(GraphicsContext*, const FloatRect& srcRect, const A
ffineTransform& patternTransform, |
| 58 const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator,
const FloatRect& destRect, BlendMode); | 58 const FloatPoint& phase, CompositeOperator, const FloatRect& destRect, B
lendMode); |
| 59 | 59 |
| 60 void invalidateCacheTimerFired(DeferrableOneShotTimer<GeneratorGeneratedImag
e>*); | 60 void invalidateCacheTimerFired(DeferrableOneShotTimer<GeneratorGeneratedImag
e>*); |
| 61 | 61 |
| 62 GeneratorGeneratedImage(PassRefPtr<Gradient> generator, const IntSize& size) | 62 GeneratorGeneratedImage(PassRefPtr<Gradient> generator, const IntSize& size) |
| 63 : m_gradient(generator) | 63 : m_gradient(generator) |
| 64 , m_cacheTimer(this, &GeneratorGeneratedImage::invalidateCacheTimerFired
, generatedImageCacheClearDelay) | 64 , m_cacheTimer(this, &GeneratorGeneratedImage::invalidateCacheTimerFired
, generatedImageCacheClearDelay) |
| 65 { | 65 { |
| 66 m_size = size; | 66 m_size = size; |
| 67 } | 67 } |
| 68 | 68 |
| 69 RefPtr<Gradient> m_gradient; | 69 RefPtr<Gradient> m_gradient; |
| 70 | 70 |
| 71 OwnPtr<ImageBuffer> m_cachedImageBuffer; | 71 OwnPtr<ImageBuffer> m_cachedImageBuffer; |
| 72 DeferrableOneShotTimer<GeneratorGeneratedImage> m_cacheTimer; | 72 DeferrableOneShotTimer<GeneratorGeneratedImage> m_cacheTimer; |
| 73 IntSize m_cachedAdjustedSize; | 73 IntSize m_cachedAdjustedSize; |
| 74 unsigned m_cachedGeneratorHash; | 74 unsigned m_cachedGeneratorHash; |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 } | 77 } |
| 78 | 78 |
| 79 #endif | 79 #endif |
| OLD | NEW |