| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Intel Corporation. All rights reserved. | 3 * Copyright (C) 2013 Intel Corporation. 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 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 bool m_backfaceVisibility : 1; | 326 bool m_backfaceVisibility : 1; |
| 327 bool m_masksToBounds : 1; | 327 bool m_masksToBounds : 1; |
| 328 bool m_drawsContent : 1; | 328 bool m_drawsContent : 1; |
| 329 bool m_contentsVisible : 1; | 329 bool m_contentsVisible : 1; |
| 330 bool m_isRootForIsolatedGroup : 1; | 330 bool m_isRootForIsolatedGroup : 1; |
| 331 | 331 |
| 332 bool m_hasScrollParent : 1; | 332 bool m_hasScrollParent : 1; |
| 333 bool m_hasClipParent : 1; | 333 bool m_hasClipParent : 1; |
| 334 | 334 |
| 335 bool m_painted : 1; | 335 bool m_painted : 1; |
| 336 bool m_textPainted : 1; | |
| 337 bool m_imagePainted : 1; | |
| 338 | 336 |
| 339 bool m_isTrackingPaintInvalidations : 1; | 337 bool m_isTrackingPaintInvalidations : 1; |
| 340 | 338 |
| 341 GraphicsLayerPaintingPhase m_paintingPhase; | 339 GraphicsLayerPaintingPhase m_paintingPhase; |
| 342 | 340 |
| 343 Vector<GraphicsLayer*> m_children; | 341 Vector<GraphicsLayer*> m_children; |
| 344 GraphicsLayer* m_parent; | 342 GraphicsLayer* m_parent; |
| 345 | 343 |
| 346 GraphicsLayer* m_maskLayer; // Reference to mask layer. We don't own this. | 344 GraphicsLayer* m_maskLayer; // Reference to mask layer. We don't own this. |
| 347 GraphicsLayer* m_contentsClippingMaskLayer; // Reference to clipping mask la
yer. We don't own this. | 345 GraphicsLayer* m_contentsClippingMaskLayer; // Reference to clipping mask la
yer. We don't own this. |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 }; | 377 }; |
| 380 | 378 |
| 381 } // namespace blink | 379 } // namespace blink |
| 382 | 380 |
| 383 #ifndef NDEBUG | 381 #ifndef NDEBUG |
| 384 // Outside the blink namespace for ease of invocation from gdb. | 382 // Outside the blink namespace for ease of invocation from gdb. |
| 385 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); | 383 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); |
| 386 #endif | 384 #endif |
| 387 | 385 |
| 388 #endif // GraphicsLayer_h | 386 #endif // GraphicsLayer_h |
| OLD | NEW |