Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: cc/test/pixel_test.cc

Issue 12908004: Lazy initialize WGC3DInProcessCommandBufferImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: explicit constructor Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « cc/test/layer_tree_pixel_test.cc ('k') | webkit/gpu/context_provider_in_process.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 51
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 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
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
OLDNEW
« no previous file with comments | « cc/test/layer_tree_pixel_test.cc ('k') | webkit/gpu/context_provider_in_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698