| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright (C) 2011 Apple Inc. All rights reserved. | |
| 3 * | |
| 4 * Redistribution and use in source and binary forms, with or without | |
| 5 * modification, are permitted provided that the following conditions | |
| 6 * are met: | |
| 7 * 1. Redistributions of source code must retain the above copyright | |
| 8 * notice, this list of conditions and the following disclaimer. | |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | |
| 10 * notice, this list of conditions and the following disclaimer in the | |
| 11 * documentation and/or other materials provided with the distribution. | |
| 12 * | |
| 13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY | |
| 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | |
| 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR | |
| 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | |
| 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | |
| 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | |
| 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | |
| 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| 24 */ | |
| 25 | |
| 26 #include "platform/graphics/filters/FilterOperations.h" | |
| 27 | |
| 28 #include "platform/LengthFunctions.h" | |
| 29 #include "platform/geometry/IntSize.h" | |
| 30 #include "platform/graphics/filters/FEGaussianBlur.h" | |
| 31 #include <numeric> | |
| 32 | |
| 33 namespace blink { | |
| 34 | |
| 35 FilterOperations::FilterOperations() | |
| 36 { | |
| 37 } | |
| 38 | |
| 39 DEFINE_TRACE(FilterOperations) | |
| 40 { | |
| 41 visitor->trace(m_operations); | |
| 42 } | |
| 43 | |
| 44 FilterOperations& FilterOperations::operator=(const FilterOperations& other) | |
| 45 { | |
| 46 m_operations = other.m_operations; | |
| 47 return *this; | |
| 48 } | |
| 49 | |
| 50 bool FilterOperations::operator==(const FilterOperations& o) const | |
| 51 { | |
| 52 if (m_operations.size() != o.m_operations.size()) | |
| 53 return false; | |
| 54 | |
| 55 unsigned s = m_operations.size(); | |
| 56 for (unsigned i = 0; i < s; i++) { | |
| 57 if (*m_operations[i] != *o.m_operations[i]) | |
| 58 return false; | |
| 59 } | |
| 60 | |
| 61 return true; | |
| 62 } | |
| 63 | |
| 64 bool FilterOperations::canInterpolateWith(const FilterOperations& other) const | |
| 65 { | |
| 66 for (size_t i = 0; i < operations().size(); ++i) { | |
| 67 if (!FilterOperation::canInterpolate(operations()[i]->type())) | |
| 68 return false; | |
| 69 } | |
| 70 | |
| 71 for (size_t i = 0; i < other.operations().size(); ++i) { | |
| 72 if (!FilterOperation::canInterpolate(other.operations()[i]->type())) | |
| 73 return false; | |
| 74 } | |
| 75 | |
| 76 size_t commonSize = std::min(operations().size(), other.operations().size())
; | |
| 77 for (size_t i = 0; i < commonSize; ++i) { | |
| 78 if (!operations()[i]->isSameType(*other.operations()[i])) | |
| 79 return false; | |
| 80 } | |
| 81 return true; | |
| 82 } | |
| 83 | |
| 84 bool FilterOperations::hasReferenceFilter() const | |
| 85 { | |
| 86 for (size_t i = 0; i < m_operations.size(); ++i) { | |
| 87 if (m_operations.at(i)->type() == FilterOperation::REFERENCE) | |
| 88 return true; | |
| 89 } | |
| 90 return false; | |
| 91 } | |
| 92 | |
| 93 FloatRect FilterOperations::mapRect(const FloatRect& rect) const | |
| 94 { | |
| 95 auto accumulateMappedRect = [](const FloatRect& rect, const Member<FilterOpe
ration>& op) | |
| 96 { | |
| 97 return op->mapRect(rect); | |
| 98 }; | |
| 99 return std::accumulate(m_operations.begin(), m_operations.end(), rect, accum
ulateMappedRect); | |
| 100 } | |
| 101 | |
| 102 bool FilterOperations::hasFilterThatAffectsOpacity() const | |
| 103 { | |
| 104 for (size_t i = 0; i < m_operations.size(); ++i) | |
| 105 if (m_operations[i]->affectsOpacity()) | |
| 106 return true; | |
| 107 return false; | |
| 108 } | |
| 109 | |
| 110 bool FilterOperations::hasFilterThatMovesPixels() const | |
| 111 { | |
| 112 for (size_t i = 0; i < m_operations.size(); ++i) | |
| 113 if (m_operations[i]->movesPixels()) | |
| 114 return true; | |
| 115 return false; | |
| 116 } | |
| 117 | |
| 118 } // namespace blink | |
| OLD | NEW |