| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "content/renderer/skia_benchmarking_extension.h" | 5 #include "content/renderer/skia_benchmarking_extension.h" |
| 6 | 6 |
| 7 #include "base/base64.h" | 7 #include "base/base64.h" |
| 8 #include "base/time/time.h" | 8 #include "base/time/time.h" |
| 9 #include "base/values.h" | 9 #include "base/values.h" |
| 10 #include "cc/base/math_util.h" | 10 #include "cc/base/math_util.h" |
| 11 #include "cc/resources/picture.h" | 11 #include "cc/resources/picture.h" |
| 12 #include "content/public/renderer/v8_value_converter.h" | 12 #include "content/public/renderer/v8_value_converter.h" |
| 13 #include "content/renderer/render_thread_impl.h" | 13 #include "content/renderer/render_thread_impl.h" |
| 14 #include "gin/arguments.h" | 14 #include "gin/arguments.h" |
| 15 #include "gin/handle.h" | 15 #include "gin/handle.h" |
| 16 #include "gin/object_template_builder.h" | 16 #include "gin/object_template_builder.h" |
| 17 #include "skia/ext/benchmarking_canvas.h" | 17 #include "skia/ext/benchmarking_canvas.h" |
| 18 #include "third_party/WebKit/public/platform/WebArrayBuffer.h" | 18 #include "third_party/WebKit/public/platform/WebArrayBuffer.h" |
| 19 #include "third_party/WebKit/public/web/WebArrayBufferConverter.h" | 19 #include "third_party/WebKit/public/web/WebArrayBufferConverter.h" |
| 20 #include "third_party/WebKit/public/web/WebFrame.h" | 20 #include "third_party/WebKit/public/web/WebFrame.h" |
| 21 #include "third_party/WebKit/public/web/WebKit.h" | 21 #include "third_party/WebKit/public/web/WebKit.h" |
| 22 #include "third_party/skia/include/core/SkBitmapDevice.h" |
| 22 #include "third_party/skia/include/core/SkCanvas.h" | 23 #include "third_party/skia/include/core/SkCanvas.h" |
| 23 #include "third_party/skia/include/core/SkColorPriv.h" | 24 #include "third_party/skia/include/core/SkColorPriv.h" |
| 24 #include "third_party/skia/include/core/SkGraphics.h" | 25 #include "third_party/skia/include/core/SkGraphics.h" |
| 25 #include "third_party/skia/include/core/SkStream.h" | 26 #include "third_party/skia/include/core/SkStream.h" |
| 26 #include "third_party/skia/src/utils/debugger/SkDebugCanvas.h" | 27 #include "third_party/skia/src/utils/debugger/SkDebugCanvas.h" |
| 27 #include "third_party/skia/src/utils/debugger/SkDrawCommand.h" | 28 #include "third_party/skia/src/utils/debugger/SkDrawCommand.h" |
| 28 #include "ui/gfx/rect_conversions.h" | 29 #include "ui/gfx/rect_conversions.h" |
| 29 #include "ui/gfx/skia_util.h" | 30 #include "ui/gfx/skia_util.h" |
| 30 #include "v8/include/v8.h" | 31 #include "v8/include/v8.h" |
| 31 | 32 |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 v8::Handle<v8::Value> picture_handle; | 256 v8::Handle<v8::Value> picture_handle; |
| 256 args->GetNext(&picture_handle); | 257 args->GetNext(&picture_handle); |
| 257 scoped_refptr<cc::Picture> picture = | 258 scoped_refptr<cc::Picture> picture = |
| 258 ParsePictureHash(isolate, picture_handle); | 259 ParsePictureHash(isolate, picture_handle); |
| 259 if (!picture.get()) | 260 if (!picture.get()) |
| 260 return; | 261 return; |
| 261 | 262 |
| 262 gfx::Rect bounds = picture->LayerRect(); | 263 gfx::Rect bounds = picture->LayerRect(); |
| 263 | 264 |
| 264 // Measure the total time by drawing straight into a bitmap-backed canvas. | 265 // Measure the total time by drawing straight into a bitmap-backed canvas. |
| 265 SkBitmap bitmap; | 266 skia::RefPtr<SkBaseDevice> device = skia::AdoptRef(SkNEW_ARGS( |
| 266 bitmap.allocN32Pixels(bounds.width(), bounds.height()); | 267 SkBitmapDevice, |
| 267 SkCanvas bitmap_canvas(bitmap); | 268 (SkBitmap::kARGB_8888_Config, bounds.width(), bounds.height()))); |
| 269 SkCanvas bitmap_canvas(device.get()); |
| 268 bitmap_canvas.clear(SK_ColorTRANSPARENT); | 270 bitmap_canvas.clear(SK_ColorTRANSPARENT); |
| 269 base::TimeTicks t0 = base::TimeTicks::HighResNow(); | 271 base::TimeTicks t0 = base::TimeTicks::HighResNow(); |
| 270 picture->Replay(&bitmap_canvas); | 272 picture->Replay(&bitmap_canvas); |
| 271 base::TimeDelta total_time = base::TimeTicks::HighResNow() - t0; | 273 base::TimeDelta total_time = base::TimeTicks::HighResNow() - t0; |
| 272 | 274 |
| 273 // Gather per-op timing info by drawing into a BenchmarkingCanvas. | 275 // Gather per-op timing info by drawing into a BenchmarkingCanvas. |
| 274 skia::BenchmarkingCanvas benchmarking_canvas(bounds.width(), bounds.height()); | 276 skia::BenchmarkingCanvas benchmarking_canvas(bounds.width(), bounds.height()); |
| 275 picture->Replay(&benchmarking_canvas); | 277 picture->Replay(&benchmarking_canvas); |
| 276 | 278 |
| 277 v8::Local<v8::Array> op_times = | 279 v8::Local<v8::Array> op_times = |
| (...skipping 23 matching lines...) Expand all Loading... |
| 301 v8::Handle<v8::Object> result = v8::Object::New(isolate); | 303 v8::Handle<v8::Object> result = v8::Object::New(isolate); |
| 302 result->Set(v8::String::NewFromUtf8(isolate, "width"), | 304 result->Set(v8::String::NewFromUtf8(isolate, "width"), |
| 303 v8::Number::New(isolate, picture->LayerRect().width())); | 305 v8::Number::New(isolate, picture->LayerRect().width())); |
| 304 result->Set(v8::String::NewFromUtf8(isolate, "height"), | 306 result->Set(v8::String::NewFromUtf8(isolate, "height"), |
| 305 v8::Number::New(isolate, picture->LayerRect().height())); | 307 v8::Number::New(isolate, picture->LayerRect().height())); |
| 306 | 308 |
| 307 args->Return(result); | 309 args->Return(result); |
| 308 } | 310 } |
| 309 | 311 |
| 310 } // namespace content | 312 } // namespace content |
| OLD | NEW |