Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) | 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 361 } | 361 } |
| 362 | 362 |
| 363 return true; | 363 return true; |
| 364 } | 364 } |
| 365 | 365 |
| 366 bool FillLayer::hasOpaqueImage(const LayoutObject* layoutObject) const | 366 bool FillLayer::hasOpaqueImage(const LayoutObject* layoutObject) const |
| 367 { | 367 { |
| 368 if (!m_image) | 368 if (!m_image) |
| 369 return false; | 369 return false; |
| 370 | 370 |
| 371 if (m_composite == CompositeClear || m_composite == CompositeCopy) | 371 if (m_composite == CompositeClear) |
| 372 return true; | 372 return true; |
| 373 | 373 |
| 374 if (m_blendMode != WebBlendModeNormal) | 374 if (m_blendMode != WebBlendModeNormal) |
| 375 return false; | 375 return false; |
| 376 | 376 |
| 377 if (m_composite == CompositeCopy) | |
|
chrishtr
2015/06/09 21:07:54
Why this change?
trchen
2015/06/09 23:36:08
Not necessary in this CL. Just fix it on the way w
chrishtr
2015/06/10 01:03:39
Ok please move into another patch then.
trchen
2015/06/10 01:41:05
Done.
| |
| 378 return true; | |
| 379 | |
| 377 if (m_composite == CompositeSourceOver) | 380 if (m_composite == CompositeSourceOver) |
| 378 return m_image->knownToBeOpaque(layoutObject); | 381 return m_image->knownToBeOpaque(layoutObject); |
| 379 | 382 |
| 380 return false; | 383 return false; |
| 381 } | 384 } |
| 382 | 385 |
| 383 bool FillLayer::hasRepeatXY() const | 386 bool FillLayer::hasRepeatXY() const |
| 384 { | 387 { |
| 385 return m_repeatX == RepeatFill && m_repeatY == RepeatFill; | 388 return m_repeatX == RepeatFill && m_repeatY == RepeatFill; |
| 386 } | 389 } |
| 387 | 390 |
| 388 } // namespace blink | 391 } // namespace blink |
| OLD | NEW |