diff options
-rw-r--r-- | skia/ext/convolver_unittest.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/skia/ext/convolver_unittest.cc b/skia/ext/convolver_unittest.cc index 9ac40c9..038cb04 100644 --- a/skia/ext/convolver_unittest.cc +++ b/skia/ext/convolver_unittest.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -298,11 +298,11 @@ TEST(Convolver, SIMDVerification) { int64 c_us = delta_c.InMicroseconds(); int64 sse_us = delta_sse.InMicroseconds(); - LOG(INFO) << "from:" << source_width << "x" << source_height - << " to:" << dest_width << "x" << dest_height - << (alpha ? " with alpha" : " w/o alpha"); - LOG(INFO) << "c:" << c_us << " sse:" << sse_us; - LOG(INFO) << "ratio:" << static_cast<float>(c_us) / sse_us; + VLOG(1) << "from:" << source_width << "x" << source_height + << " to:" << dest_width << "x" << dest_height + << (alpha ? " with alpha" : " w/o alpha"); + VLOG(1) << "c:" << c_us << " sse:" << sse_us; + VLOG(1) << "ratio:" << static_cast<float>(c_us) / sse_us; // Comparing result. for (unsigned int i = 0; i < dest_height; i++) { |