diff options
author | fischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-10 22:35:02 +0000 |
---|---|---|
committer | fischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-10 22:35:02 +0000 |
commit | d8dfa5321bbedf6545abb3b95ad94b6c9f3ceae2 (patch) | |
tree | f52b3b193d9e5f3ede458a36776179952e4d6404 /skia | |
parent | 35327b5afc3d3ee71aa95fd76eca7792eb2d2055 (diff) | |
download | chromium_src-d8dfa5321bbedf6545abb3b95ad94b6c9f3ceae2.zip chromium_src-d8dfa5321bbedf6545abb3b95ad94b6c9f3ceae2.tar.gz chromium_src-d8dfa5321bbedf6545abb3b95ad94b6c9f3ceae2.tar.bz2 |
Remove log-spam from Convolver.SIMDVerification.
Review URL: http://codereview.chromium.org/10031040
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131650 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia')
-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++) { |