| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #include <stddef.h> | 5 #include <stddef.h> |
| 6 #include <stdint.h> | 6 #include <stdint.h> |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "base/memory/aligned_memory.h" |
| 9 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
| 10 #include "cc/base/math_util.h" | 11 #include "cc/base/math_util.h" |
| 11 #include "cc/output/gl_renderer.h" | 12 #include "cc/output/gl_renderer.h" |
| 12 #include "cc/paint/paint_flags.h" | 13 #include "cc/paint/paint_flags.h" |
| 13 #include "cc/paint/skia_paint_canvas.h" | 14 #include "cc/paint/skia_paint_canvas.h" |
| 14 #include "cc/quads/draw_quad.h" | 15 #include "cc/quads/draw_quad.h" |
| 15 #include "cc/quads/picture_draw_quad.h" | 16 #include "cc/quads/picture_draw_quad.h" |
| 16 #include "cc/quads/texture_draw_quad.h" | 17 #include "cc/quads/texture_draw_quad.h" |
| 17 #include "cc/resources/video_resource_updater.h" | 18 #include "cc/resources/video_resource_updater.h" |
| 18 #include "cc/test/fake_raster_source.h" | 19 #include "cc/test/fake_raster_source.h" |
| (...skipping 3530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3549 INSTANTIATE_TEST_CASE_P( | 3550 INSTANTIATE_TEST_CASE_P( |
| 3550 ToColorSpace, | 3551 ToColorSpace, |
| 3551 ColorTransformPixelTest, | 3552 ColorTransformPixelTest, |
| 3552 testing::Combine(testing::ValuesIn(intermediate_color_spaces), | 3553 testing::Combine(testing::ValuesIn(intermediate_color_spaces), |
| 3553 testing::ValuesIn(dst_color_spaces))); | 3554 testing::ValuesIn(dst_color_spaces))); |
| 3554 | 3555 |
| 3555 #endif // !defined(OS_ANDROID) | 3556 #endif // !defined(OS_ANDROID) |
| 3556 | 3557 |
| 3557 } // namespace | 3558 } // namespace |
| 3558 } // namespace cc | 3559 } // namespace cc |
| OLD | NEW |