OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "modules/canvas2d/BaseRenderingContext2D.h" | 5 #include "modules/canvas2d/BaseRenderingContext2D.h" |
6 | 6 |
7 #include "bindings/core/v8/ExceptionMessages.h" | 7 #include "bindings/core/v8/ExceptionMessages.h" |
8 #include "bindings/core/v8/ExceptionState.h" | 8 #include "bindings/core/v8/ExceptionState.h" |
9 #include "bindings/core/v8/ExceptionStatePlaceholder.h" | |
10 #include "core/css/cssom/CSSURLImageValue.h" | 9 #include "core/css/cssom/CSSURLImageValue.h" |
11 #include "core/css/parser/CSSParser.h" | 10 #include "core/css/parser/CSSParser.h" |
12 #include "core/frame/ImageBitmap.h" | 11 #include "core/frame/ImageBitmap.h" |
13 #include "core/html/HTMLCanvasElement.h" | 12 #include "core/html/HTMLCanvasElement.h" |
14 #include "core/html/HTMLImageElement.h" | 13 #include "core/html/HTMLImageElement.h" |
15 #include "core/html/HTMLVideoElement.h" | 14 #include "core/html/HTMLVideoElement.h" |
16 #include "core/html/ImageData.h" | 15 #include "core/html/ImageData.h" |
17 #include "core/offscreencanvas/OffscreenCanvas.h" | 16 #include "core/offscreencanvas/OffscreenCanvas.h" |
18 #include "modules/canvas2d/CanvasGradient.h" | 17 #include "modules/canvas2d/CanvasGradient.h" |
19 #include "modules/canvas2d/CanvasPattern.h" | 18 #include "modules/canvas2d/CanvasPattern.h" |
(...skipping 1994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2014 ExpensiveCanvasHeuristicParameters::ShadowFixedCost[index] * | 2013 ExpensiveCanvasHeuristicParameters::ShadowFixedCost[index] * |
2015 m_usageCounters.numBlurredShadows + | 2014 m_usageCounters.numBlurredShadows + |
2016 ExpensiveCanvasHeuristicParameters:: | 2015 ExpensiveCanvasHeuristicParameters:: |
2017 ShadowVariableCostPerAreaTimesShadowBlurSquared[index] * | 2016 ShadowVariableCostPerAreaTimesShadowBlurSquared[index] * |
2018 m_usageCounters.boundingBoxAreaTimesShadowBlurSquared; | 2017 m_usageCounters.boundingBoxAreaTimesShadowBlurSquared; |
2019 | 2018 |
2020 return basicCostOfDrawCalls + fillTypeAdjustment + shadowAdjustment; | 2019 return basicCostOfDrawCalls + fillTypeAdjustment + shadowAdjustment; |
2021 } | 2020 } |
2022 | 2021 |
2023 } // namespace blink | 2022 } // namespace blink |
OLD | NEW |