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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 | 312 |
313 Color m_backgroundColor; | 313 Color m_backgroundColor; |
314 float m_opacity; | 314 float m_opacity; |
315 | 315 |
316 WebBlendMode m_blendMode; | 316 WebBlendMode m_blendMode; |
317 | 317 |
318 bool m_hasTransformOrigin : 1; | 318 bool m_hasTransformOrigin : 1; |
319 bool m_contentsOpaque : 1; | 319 bool m_contentsOpaque : 1; |
320 bool m_shouldFlattenTransform: 1; | 320 bool m_shouldFlattenTransform: 1; |
321 bool m_backfaceVisibility : 1; | 321 bool m_backfaceVisibility : 1; |
322 bool m_masksToBounds : 1; | |
323 bool m_drawsContent : 1; | 322 bool m_drawsContent : 1; |
324 bool m_contentsVisible : 1; | 323 bool m_contentsVisible : 1; |
325 bool m_isRootForIsolatedGroup : 1; | 324 bool m_isRootForIsolatedGroup : 1; |
326 | 325 |
327 bool m_hasScrollParent : 1; | 326 bool m_hasScrollParent : 1; |
328 bool m_hasClipParent : 1; | 327 bool m_hasClipParent : 1; |
329 | 328 |
330 bool m_painted : 1; | 329 bool m_painted : 1; |
331 | 330 |
332 bool m_isTrackingPaintInvalidations : 1; | 331 bool m_isTrackingPaintInvalidations : 1; |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 }; | 371 }; |
373 | 372 |
374 } // namespace blink | 373 } // namespace blink |
375 | 374 |
376 #ifndef NDEBUG | 375 #ifndef NDEBUG |
377 // Outside the blink namespace for ease of invocation from gdb. | 376 // Outside the blink namespace for ease of invocation from gdb. |
378 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); | 377 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); |
379 #endif | 378 #endif |
380 | 379 |
381 #endif // GraphicsLayer_h | 380 #endif // GraphicsLayer_h |
OLD | NEW |