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

Side by Side Diff: content/browser/gpu/gpu_ipc_browsertests.cc

Issue 1949023005: gpu: Add flag for enabling asynchronous worker context. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase fix Created 4 years, 7 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
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 "base/command_line.h" 5 #include "base/command_line.h"
6 #include "base/memory/ptr_util.h" 6 #include "base/memory/ptr_util.h"
7 #include "base/run_loop.h" 7 #include "base/run_loop.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "content/browser/gpu/browser_gpu_channel_host_factory.h" 9 #include "content/browser/gpu/browser_gpu_channel_host_factory.h"
10 #include "content/browser/gpu/gpu_process_host_ui_shim.h" 10 #include "content/browser/gpu/gpu_process_host_ui_shim.h"
(...skipping 19 matching lines...) Expand all
30 // any alpha, depth, stencil, antialiasing. 30 // any alpha, depth, stencil, antialiasing.
31 gpu::gles2::ContextCreationAttribHelper attributes; 31 gpu::gles2::ContextCreationAttribHelper attributes;
32 attributes.alpha_size = -1; 32 attributes.alpha_size = -1;
33 attributes.depth_size = 0; 33 attributes.depth_size = 0;
34 attributes.stencil_size = 0; 34 attributes.stencil_size = 0;
35 attributes.samples = 0; 35 attributes.samples = 0;
36 attributes.sample_buffers = 0; 36 attributes.sample_buffers = 0;
37 attributes.bind_generates_resource = false; 37 attributes.bind_generates_resource = false;
38 bool automatic_flushes = false; 38 bool automatic_flushes = false;
39 return make_scoped_refptr(new content::ContextProviderCommandBuffer( 39 return make_scoped_refptr(new content::ContextProviderCommandBuffer(
40 std::move(gpu_channel_host), gpu::kNullSurfaceHandle, GURL(), 40 std::move(gpu_channel_host), gpu::GPU_STREAM_DEFAULT,
41 gpu::GpuStreamPriority::NORMAL, gpu::kNullSurfaceHandle, GURL(),
41 gfx::PreferIntegratedGpu, automatic_flushes, gpu::SharedMemoryLimits(), 42 gfx::PreferIntegratedGpu, automatic_flushes, gpu::SharedMemoryLimits(),
42 attributes, nullptr, 43 attributes, nullptr,
43 content::command_buffer_metrics::OFFSCREEN_CONTEXT_FOR_TESTING)); 44 content::command_buffer_metrics::OFFSCREEN_CONTEXT_FOR_TESTING));
44 } 45 }
45 46
46 class ContextTestBase : public content::ContentBrowserTest { 47 class ContextTestBase : public content::ContentBrowserTest {
47 public: 48 public:
48 void SetUpOnMainThread() override { 49 void SetUpOnMainThread() override {
49 // This may leave the provider_ null in some cases, so tests need to early 50 // This may leave the provider_ null in some cases, so tests need to early
50 // out. 51 // out.
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 shim->SimulateCrash(); 282 shim->SimulateCrash();
282 run_loop.Run(); 283 run_loop.Run();
283 284
284 EXPECT_EQ(1, counter); 285 EXPECT_EQ(1, counter);
285 EXPECT_FALSE(IsChannelEstablished()); 286 EXPECT_FALSE(IsChannelEstablished());
286 EstablishAndWait(); 287 EstablishAndWait();
287 EXPECT_TRUE(IsChannelEstablished()); 288 EXPECT_TRUE(IsChannelEstablished());
288 } 289 }
289 290
290 } // namespace content 291 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/gpu/compositor_util.cc ('k') | content/browser/renderer_host/compositor_impl_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698