OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // This file looks like a unit test, but it contains benchmarks and test | 5 // This file looks like a unit test, but it contains benchmarks and test |
6 // utilities intended for manual evaluation of the scalers in | 6 // utilities intended for manual evaluation of the scalers in |
7 // gl_helper*. These tests produce output in the form of files and printouts, | 7 // gl_helper*. These tests produce output in the form of files and printouts, |
8 // but cannot really "fail". There is no point in making these tests part | 8 // but cannot really "fail". There is no point in making these tests part |
9 // of any test automation run. | 9 // of any test automation run. |
10 | 10 |
11 #include <stdio.h> | 11 #include <stdio.h> |
12 #include <cmath> | 12 #include <cmath> |
13 #include <string> | 13 #include <string> |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include <GLES2/gl2.h> | 16 #include <GLES2/gl2.h> |
17 #include <GLES2/gl2ext.h> | 17 #include <GLES2/gl2ext.h> |
18 #include <GLES2/gl2extchromium.h> | 18 #include <GLES2/gl2extchromium.h> |
19 | 19 |
20 #include "base/at_exit.h" | 20 #include "base/at_exit.h" |
21 #include "base/command_line.h" | 21 #include "base/command_line.h" |
22 #include "base/file_util.h" | 22 #include "base/file_util.h" |
23 #include "base/strings/stringprintf.h" | 23 #include "base/strings/stringprintf.h" |
24 #include "base/time.h" | 24 #include "base/time/time.h" |
25 #include "content/common/gpu/client/gl_helper.h" | 25 #include "content/common/gpu/client/gl_helper.h" |
26 #include "content/common/gpu/client/gl_helper_scaling.h" | 26 #include "content/common/gpu/client/gl_helper_scaling.h" |
27 #include "content/public/test/unittest_test_suite.h" | 27 #include "content/public/test/unittest_test_suite.h" |
28 #include "content/test/content_test_suite.h" | 28 #include "content/test/content_test_suite.h" |
29 #include "testing/gtest/include/gtest/gtest.h" | 29 #include "testing/gtest/include/gtest/gtest.h" |
30 #include "third_party/skia/include/core/SkBitmap.h" | 30 #include "third_party/skia/include/core/SkBitmap.h" |
31 #include "third_party/skia/include/core/SkTypes.h" | 31 #include "third_party/skia/include/core/SkTypes.h" |
32 #include "ui/gfx/codec/png_codec.h" | 32 #include "ui/gfx/codec/png_codec.h" |
33 #include "ui/gl/gl_surface.h" | 33 #include "ui/gl/gl_surface.h" |
34 #include "webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.
h" | 34 #include "webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.
h" |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
313 #if defined(OS_MACOSX) | 313 #if defined(OS_MACOSX) |
314 base::mac::ScopedNSAutoreleasePool pool; | 314 base::mac::ScopedNSAutoreleasePool pool; |
315 #endif | 315 #endif |
316 #if defined(TOOLKIT_GTK) | 316 #if defined(TOOLKIT_GTK) |
317 gfx::GtkInitFromCommandLine(*CommandLine::ForCurrentProcess()); | 317 gfx::GtkInitFromCommandLine(*CommandLine::ForCurrentProcess()); |
318 #endif | 318 #endif |
319 gfx::GLSurface::InitializeOneOff(); | 319 gfx::GLSurface::InitializeOneOff(); |
320 | 320 |
321 return content::UnitTestTestSuite(suite).Run(); | 321 return content::UnitTestTestSuite(suite).Run(); |
322 } | 322 } |
OLD | NEW |