OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
All rights reserved. | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
All rights reserved. |
3 * Copyright (C) 2008, 2010 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2008, 2010 Nokia Corporation and/or its subsidiary(-ies) |
4 * Copyright (C) 2007 Alp Toker <alp@atoker.com> | 4 * Copyright (C) 2007 Alp Toker <alp@atoker.com> |
5 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> | 5 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> |
6 * Copyright (C) 2008 Dirk Schulze <krit@webkit.org> | 6 * Copyright (C) 2008 Dirk Schulze <krit@webkit.org> |
7 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. | 7 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. |
8 * Copyright (C) 2012, 2013 Intel Corporation. All rights reserved. | 8 * Copyright (C) 2012, 2013 Intel Corporation. All rights reserved. |
9 * Copyright (C) 2013 Adobe Systems Incorporated. All rights reserved. | 9 * Copyright (C) 2013 Adobe Systems Incorporated. All rights reserved. |
10 * | 10 * |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 } | 109 } |
110 } | 110 } |
111 } | 111 } |
112 | 112 |
113 CanvasRenderingContext2D::~CanvasRenderingContext2D() | 113 CanvasRenderingContext2D::~CanvasRenderingContext2D() |
114 { | 114 { |
115 } | 115 } |
116 | 116 |
117 void CanvasRenderingContext2D::validateStateStack() | 117 void CanvasRenderingContext2D::validateStateStack() |
118 { | 118 { |
119 #if !ASSERT_DISABLED | 119 #if ASSERT_ENABLED |
120 GraphicsContext* context = canvas()->existingDrawingContext(); | 120 GraphicsContext* context = canvas()->existingDrawingContext(); |
121 if (context && !context->contextDisabled()) | 121 if (context && !context->contextDisabled()) |
122 ASSERT(context->saveCount() == m_stateStack.size()); | 122 ASSERT(context->saveCount() == m_stateStack.size()); |
123 #endif | 123 #endif |
124 } | 124 } |
125 | 125 |
126 bool CanvasRenderingContext2D::isAccelerated() const | 126 bool CanvasRenderingContext2D::isAccelerated() const |
127 { | 127 { |
128 if (!canvas()->hasImageBuffer()) | 128 if (!canvas()->hasImageBuffer()) |
129 return false; | 129 return false; |
(...skipping 2223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2353 c->setAlphaAsFloat(1.0); | 2353 c->setAlphaAsFloat(1.0); |
2354 c->clearShadow(); | 2354 c->clearShadow(); |
2355 c->setCompositeOperation(CompositeSourceOver, blink::WebBlendModeNormal); | 2355 c->setCompositeOperation(CompositeSourceOver, blink::WebBlendModeNormal); |
2356 c->drawFocusRing(path, focusRingWidth, focusRingOutline, focusRingColor); | 2356 c->drawFocusRing(path, focusRingWidth, focusRingOutline, focusRingColor); |
2357 c->restore(); | 2357 c->restore(); |
2358 validateStateStack(); | 2358 validateStateStack(); |
2359 didDraw(dirtyRect); | 2359 didDraw(dirtyRect); |
2360 } | 2360 } |
2361 | 2361 |
2362 } // namespace WebCore | 2362 } // namespace WebCore |
OLD | NEW |