Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(323)

Side by Side Diff: Source/core/paint/TransformRecorder.cpp

Issue 1193433004: Blink-side contiguous allocation of display items. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add ListContainer::AllocateAndConstructWithArguments and a TODO in DisplayItemList::findMatchingIte… Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/paint/Transform3DRecorder.cpp ('k') | Source/platform/blink_platform.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "core/paint/TransformRecorder.h" 6 #include "core/paint/TransformRecorder.h"
7 7
8 #include "platform/RuntimeEnabledFeatures.h" 8 #include "platform/RuntimeEnabledFeatures.h"
9 #include "platform/graphics/GraphicsContext.h" 9 #include "platform/graphics/GraphicsContext.h"
10 #include "platform/graphics/paint/DisplayItemList.h" 10 #include "platform/graphics/paint/DisplayItemList.h"
11 #include "platform/graphics/paint/TransformDisplayItem.h" 11 #include "platform/graphics/paint/TransformDisplayItem.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 TransformRecorder::TransformRecorder(GraphicsContext& context, const DisplayItem ClientWrapper& client, const AffineTransform& transform) 15 TransformRecorder::TransformRecorder(GraphicsContext& context, const DisplayItem ClientWrapper& client, const AffineTransform& transform)
16 : m_context(context) 16 : m_context(context)
17 , m_client(client) 17 , m_client(client)
18 { 18 {
19 m_skipRecordingForIdentityTransform = transform.isIdentity(); 19 m_skipRecordingForIdentityTransform = transform.isIdentity();
20 20
21 if (m_skipRecordingForIdentityTransform) 21 if (m_skipRecordingForIdentityTransform)
22 return; 22 return;
23 23
24 if (RuntimeEnabledFeatures::slimmingPaintEnabled()) { 24 if (RuntimeEnabledFeatures::slimmingPaintEnabled()) {
25 ASSERT(m_context.displayItemList()); 25 ASSERT(m_context.displayItemList());
26 if (m_context.displayItemList()->displayItemConstructionIsDisabled()) 26 if (m_context.displayItemList()->displayItemConstructionIsDisabled())
27 return; 27 return;
28 m_context.displayItemList()->add(BeginTransformDisplayItem::create(m_cli ent, transform)); 28 m_context.displayItemList()->createAndAppend<BeginTransformDisplayItem>( m_client, transform);
29 } else { 29 } else {
30 BeginTransformDisplayItem beginTransform(m_client, transform); 30 BeginTransformDisplayItem beginTransform(m_client, transform);
31 beginTransform.replay(m_context); 31 beginTransform.replay(m_context);
32 } 32 }
33 } 33 }
34 34
35 TransformRecorder::~TransformRecorder() 35 TransformRecorder::~TransformRecorder()
36 { 36 {
37 if (m_skipRecordingForIdentityTransform) 37 if (m_skipRecordingForIdentityTransform)
38 return; 38 return;
39 39
40 if (RuntimeEnabledFeatures::slimmingPaintEnabled()) { 40 if (RuntimeEnabledFeatures::slimmingPaintEnabled()) {
41 ASSERT(m_context.displayItemList()); 41 ASSERT(m_context.displayItemList());
42 if (!m_context.displayItemList()->displayItemConstructionIsDisabled()) { 42 if (!m_context.displayItemList()->displayItemConstructionIsDisabled()) {
43 if (m_context.displayItemList()->lastDisplayItemIsNoopBegin()) 43 if (m_context.displayItemList()->lastDisplayItemIsNoopBegin())
44 m_context.displayItemList()->removeLastDisplayItem(); 44 m_context.displayItemList()->removeLastDisplayItem();
45 else 45 else
46 m_context.displayItemList()->add(EndTransformDisplayItem::create (m_client)); 46 m_context.displayItemList()->createAndAppend<EndTransformDisplay Item>(m_client);
47 } 47 }
48 } else { 48 } else {
49 EndTransformDisplayItem endTransform(m_client); 49 EndTransformDisplayItem endTransform(m_client);
50 endTransform.replay(m_context); 50 endTransform.replay(m_context);
51 } 51 }
52 } 52 }
53 53
54 } // namespace blink 54 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/paint/Transform3DRecorder.cpp ('k') | Source/platform/blink_platform.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698