OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 OwnPtr<GraphicsLayer> m_rootTransformLayer; | 318 OwnPtr<GraphicsLayer> m_rootTransformLayer; |
319 | 319 |
320 CompositingReasonFinder m_compositingReasonFinder; | 320 CompositingReasonFinder m_compositingReasonFinder; |
321 | 321 |
322 CompositingUpdateType m_pendingUpdateType; | 322 CompositingUpdateType m_pendingUpdateType; |
323 | 323 |
324 bool m_hasAcceleratedCompositing; | 324 bool m_hasAcceleratedCompositing; |
325 bool m_showRepaintCounter; | 325 bool m_showRepaintCounter; |
326 | 326 |
327 bool m_needsToRecomputeCompositingRequirements; | 327 bool m_needsToRecomputeCompositingRequirements; |
328 bool m_needsToUpdateLayerTreeGeometry; | |
329 | 328 |
330 bool m_compositing; | 329 bool m_compositing; |
331 bool m_compositingLayersNeedRebuild; | 330 bool m_compositingLayersNeedRebuild; |
332 bool m_forceCompositingMode; | 331 bool m_forceCompositingMode; |
333 bool m_needsUpdateCompositingRequirementsState; | 332 bool m_needsUpdateCompositingRequirementsState; |
334 | 333 |
335 bool m_isTrackingRepaints; // Used for testing. | 334 bool m_isTrackingRepaints; // Used for testing. |
336 | 335 |
337 RootLayerAttachment m_rootLayerAttachment; | 336 RootLayerAttachment m_rootLayerAttachment; |
338 | 337 |
(...skipping 17 matching lines...) Expand all Loading... |
356 OwnPtr<GraphicsLayer> m_layerForScrollCorner; | 355 OwnPtr<GraphicsLayer> m_layerForScrollCorner; |
357 #if USE(RUBBER_BANDING) | 356 #if USE(RUBBER_BANDING) |
358 OwnPtr<GraphicsLayer> m_layerForOverhangShadow; | 357 OwnPtr<GraphicsLayer> m_layerForOverhangShadow; |
359 #endif | 358 #endif |
360 }; | 359 }; |
361 | 360 |
362 | 361 |
363 } // namespace WebCore | 362 } // namespace WebCore |
364 | 363 |
365 #endif // RenderLayerCompositor_h | 364 #endif // RenderLayerCompositor_h |
OLD | NEW |