| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 "cc/test/pixel_test.h" | 5 #include "cc/test/pixel_test.h" |
| 6 | 6 |
| 7 #include "base/path_service.h" | 7 #include "base/path_service.h" |
| 8 #include "cc/output/compositor_frame_metadata.h" | 8 #include "cc/output/compositor_frame_metadata.h" |
| 9 #include "cc/output/gl_renderer.h" | 9 #include "cc/output/gl_renderer.h" |
| 10 #include "cc/output/output_surface.h" | 10 #include "cc/output/output_surface.h" |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 PixelTest::PixelTest() : device_viewport_size_(gfx::Size(200, 200)) {} | 52 PixelTest::PixelTest() : device_viewport_size_(gfx::Size(200, 200)) {} |
| 53 | 53 |
| 54 PixelTest::~PixelTest() {} | 54 PixelTest::~PixelTest() {} |
| 55 | 55 |
| 56 void PixelTest::SetUp() { | 56 void PixelTest::SetUp() { |
| 57 CHECK(gfx::InitializeGLBindings(gfx::kGLImplementationOSMesaGL)); | 57 CHECK(gfx::InitializeGLBindings(gfx::kGLImplementationOSMesaGL)); |
| 58 | 58 |
| 59 scoped_ptr<webkit::gpu::WebGraphicsContext3DInProcessCommandBufferImpl> | 59 scoped_ptr<webkit::gpu::WebGraphicsContext3DInProcessCommandBufferImpl> |
| 60 context3d( | 60 context3d( |
| 61 new webkit::gpu::WebGraphicsContext3DInProcessCommandBufferImpl); | 61 new webkit::gpu::WebGraphicsContext3DInProcessCommandBufferImpl); |
| 62 context3d->Initialize(WebKit::WebGraphicsContext3D::Attributes(), NULL); | 62 context3d->Initialize(WebKit::WebGraphicsContext3D::Attributes()); |
| 63 output_surface_.reset(new OutputSurface( | 63 output_surface_.reset(new OutputSurface( |
| 64 context3d.PassAs<WebKit::WebGraphicsContext3D>())); | 64 context3d.PassAs<WebKit::WebGraphicsContext3D>())); |
| 65 resource_provider_ = ResourceProvider::Create(output_surface_.get()); | 65 resource_provider_ = ResourceProvider::Create(output_surface_.get()); |
| 66 fake_client_ = | 66 fake_client_ = |
| 67 make_scoped_ptr(new PixelTestRendererClient(device_viewport_size_)); | 67 make_scoped_ptr(new PixelTestRendererClient(device_viewport_size_)); |
| 68 renderer_ = GLRenderer::Create(fake_client_.get(), | 68 renderer_ = GLRenderer::Create(fake_client_.get(), |
| 69 output_surface_.get(), | 69 output_surface_.get(), |
| 70 resource_provider_.get()); | 70 resource_provider_.get()); |
| 71 | 71 |
| 72 scoped_refptr<webkit::gpu::ContextProviderInProcess> offscreen_contexts = | 72 scoped_refptr<webkit::gpu::ContextProviderInProcess> offscreen_contexts = |
| (...skipping 17 matching lines...) Expand all Loading... |
| 90 if (!PathService::Get(cc::DIR_TEST_DATA, &test_data_dir)) | 90 if (!PathService::Get(cc::DIR_TEST_DATA, &test_data_dir)) |
| 91 return false; | 91 return false; |
| 92 | 92 |
| 93 // To rebaseline: | 93 // To rebaseline: |
| 94 //return WritePNGFile(bitmap, test_data_dir.Append(ref_file)); | 94 //return WritePNGFile(bitmap, test_data_dir.Append(ref_file)); |
| 95 | 95 |
| 96 return IsSameAsPNGFile(bitmap, test_data_dir.Append(ref_file)); | 96 return IsSameAsPNGFile(bitmap, test_data_dir.Append(ref_file)); |
| 97 } | 97 } |
| 98 | 98 |
| 99 } // namespace cc | 99 } // namespace cc |
| OLD | NEW |