| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 unsigned m_xPosSet : 1; | 323 unsigned m_xPosSet : 1; |
| 324 unsigned m_yPosSet : 1; | 324 unsigned m_yPosSet : 1; |
| 325 unsigned m_backgroundXOriginSet : 1; | 325 unsigned m_backgroundXOriginSet : 1; |
| 326 unsigned m_backgroundYOriginSet : 1; | 326 unsigned m_backgroundYOriginSet : 1; |
| 327 unsigned m_compositeSet : 1; | 327 unsigned m_compositeSet : 1; |
| 328 unsigned m_blendModeSet : 1; | 328 unsigned m_blendModeSet : 1; |
| 329 unsigned m_maskSourceTypeSet : 1; | 329 unsigned m_maskSourceTypeSet : 1; |
| 330 | 330 |
| 331 unsigned m_type : 1; // EFillLayerType | 331 unsigned m_type : 1; // EFillLayerType |
| 332 | 332 |
| 333 mutable unsigned | 333 // EFillBox, maximum m_clip value from this to bottom layer |
| 334 m_thisOrNextLayersClipMax : 2; // EFillBox, maximum m_clip value from thi
s to bottom layer | 334 mutable unsigned m_thisOrNextLayersClipMax : 2; |
| 335 mutable unsigned | 335 // True if any of this or subsequent layers has content-box clip or origin. |
| 336 m_thisOrNextLayersUseContentBox : 1; // True if any of this or subsequent
layers has content-box clip or origin. | 336 mutable unsigned m_thisOrNextLayersUseContentBox : 1; |
| 337 mutable unsigned | 337 // True if any of this or subsequent layers has local attachment. |
| 338 m_thisOrNextLayersHaveLocalAttachment : 1; // True if any of this or subs
equent layers has local attachment. | 338 mutable unsigned m_thisOrNextLayersHaveLocalAttachment : 1; |
| 339 mutable unsigned | 339 // Set once any of the above is accessed. The layers will be frozen |
| 340 m_cachedPropertiesComputed : 1; // Set once any of the above is accessed.
The layers will be frozen thereafter. | 340 // thereafter. |
| 341 mutable unsigned m_cachedPropertiesComputed : 1; |
| 341 }; | 342 }; |
| 342 | 343 |
| 343 } // namespace blink | 344 } // namespace blink |
| 344 | 345 |
| 345 #endif // FillLayer_h | 346 #endif // FillLayer_h |
| OLD | NEW |