| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Adobe Systems Incorporated. All rights reserved. | 2 * Copyright (C) 2013 Adobe Systems Incorporated. All rights reserved. |
| 3 * Copyright (C) 2013 Google Inc. All rights reserved. | 3 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above | 9 * 1. Redistributions of source code must retain the above |
| 10 * copyright notice, this list of conditions and the following | 10 * copyright notice, this list of conditions and the following |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 23 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 24 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 24 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR | 25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR |
| 26 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF | 26 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF |
| 27 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 27 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 28 * SUCH DAMAGE. | 28 * SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 | 32 |
| 33 #include "core/platform/graphics/filters/ReferenceFilter.h" | 33 #include "platform/graphics/filters/ReferenceFilter.h" |
| 34 | 34 |
| 35 #include "core/platform/graphics/filters/FilterEffect.h" | 35 #include "platform/graphics/filters/FilterEffect.h" |
| 36 #include "core/platform/graphics/filters/SourceGraphic.h" | 36 #include "platform/graphics/filters/SourceGraphic.h" |
| 37 | 37 |
| 38 namespace WebCore { | 38 namespace WebCore { |
| 39 | 39 |
| 40 ReferenceFilter::ReferenceFilter() | 40 ReferenceFilter::ReferenceFilter() |
| 41 : Filter(AffineTransform()) | 41 : Filter(AffineTransform()) |
| 42 , m_sourceGraphic(SourceGraphic::create(this)) | 42 , m_sourceGraphic(SourceGraphic::create(this)) |
| 43 { | 43 { |
| 44 // FIXME: This should come from the filter DOM node's filterRes attribute. | 44 // FIXME: This should come from the filter DOM node's filterRes attribute. |
| 45 setFilterResolution(FloatSize(1, 1)); | 45 setFilterResolution(FloatSize(1, 1)); |
| 46 } | 46 } |
| 47 | 47 |
| 48 void ReferenceFilter::setLastEffect(PassRefPtr<FilterEffect> effect) | 48 void ReferenceFilter::setLastEffect(PassRefPtr<FilterEffect> effect) |
| 49 { | 49 { |
| 50 m_lastEffect = effect; | 50 m_lastEffect = effect; |
| 51 } | 51 } |
| 52 | 52 |
| 53 ReferenceFilter::~ReferenceFilter() | 53 ReferenceFilter::~ReferenceFilter() |
| 54 { | 54 { |
| 55 } | 55 } |
| 56 | 56 |
| 57 } // namespace WebCore | 57 } // namespace WebCore |
| OLD | NEW |