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

Side by Side Diff: services/ui/public/cpp/lib/gles2_context.cc

Issue 2196503003: Revert of services/ui: Revert CLs that broke Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "services/ui/public/cpp/gles2_context.h" 5 #include "services/ui/public/cpp/gles2_context.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <utility> 10 #include <utility>
11 11
12 #include "gpu/command_buffer/client/gles2_cmd_helper.h" 12 #include "gpu/command_buffer/client/gles2_cmd_helper.h"
13 #include "gpu/command_buffer/client/shared_memory_limits.h" 13 #include "gpu/command_buffer/client/shared_memory_limits.h"
14 #include "gpu/command_buffer/client/transfer_buffer.h" 14 #include "gpu/command_buffer/client/transfer_buffer.h"
15 #include "gpu/ipc/client/command_buffer_proxy_impl.h" 15 #include "gpu/ipc/client/command_buffer_proxy_impl.h"
16 #include "mojo/public/cpp/system/core.h" 16 #include "mojo/public/cpp/system/core.h"
17 #include "services/shell/public/cpp/connector.h"
18 #include "services/ui/common/gpu_service.h" 17 #include "services/ui/common/gpu_service.h"
19 #include "services/ui/public/cpp/lib/command_buffer_client_impl.h" 18 #include "services/ui/public/cpp/lib/command_buffer_client_impl.h"
20 #include "services/ui/public/interfaces/command_buffer.mojom.h" 19 #include "services/ui/public/interfaces/command_buffer.mojom.h"
21 #include "services/ui/public/interfaces/gpu_service.mojom.h" 20 #include "services/ui/public/interfaces/gpu_service.mojom.h"
22 #include "url/gurl.h" 21 #include "url/gurl.h"
23 22
24 namespace ui { 23 namespace ui {
25 24
26 GLES2Context::GLES2Context() {} 25 GLES2Context::GLES2Context() {}
27 26
28 GLES2Context::~GLES2Context() {} 27 GLES2Context::~GLES2Context() {}
29 28
30 bool GLES2Context::Initialize(const std::vector<int32_t>& attribs, 29 bool GLES2Context::Initialize(const std::vector<int32_t>& attribs) {
31 shell::Connector* connector) { 30 scoped_refptr<gpu::GpuChannelHost> gpu_channel_host =
32 gpu::CommandBuffer* command_buffer = nullptr; 31 GpuService::GetInstance()->EstablishGpuChannelSync();
33 gpu::GpuControl* gpu_control = nullptr; 32 if (!gpu_channel_host)
34 // TODO(penghuang): Use type gpu::gles2::ContextCreationAttribHelper for 33 return false;
35 // attribs. 34 gpu::SurfaceHandle surface_handle = gfx::kNullAcceleratedWidget;
36 if (!ui::GpuService::UseChromeGpuCommandBuffer()) { 35 // TODO(penghuang): support shared group.
37 mojom::GpuPtr gpu; 36 gpu::CommandBufferProxyImpl* shared_command_buffer = nullptr;
38 connector->ConnectToInterface("mojo:ui", &gpu); 37 gpu::GpuStreamId stream_id = gpu::GpuStreamId::GPU_STREAM_DEFAULT;
39 mojom::CommandBufferPtr command_buffer_ptr; 38 gpu::GpuStreamPriority stream_priority = gpu::GpuStreamPriority::NORMAL;
40 gpu->CreateOffscreenGLES2Context(GetProxy(&command_buffer_ptr)); 39 gpu::gles2::ContextCreationAttribHelper attributes;
41 command_buffer_client_impl_.reset( 40 // TODO(penghuang): figure a useful active_url.
42 new CommandBufferClientImpl(attribs, std::move(command_buffer_ptr))); 41 GURL active_url;
43 if (!command_buffer_client_impl_->Initialize()) 42 scoped_refptr<base::SingleThreadTaskRunner> task_runner =
44 return false; 43 base::ThreadTaskRunnerHandle::Get();
45 command_buffer = command_buffer_client_impl_.get(); 44 if (!attributes.Parse(attribs))
46 gpu_control = command_buffer_client_impl_.get(); 45 return false;
47 } else { 46 command_buffer_proxy_impl_ = gpu::CommandBufferProxyImpl::Create(
48 scoped_refptr<gpu::GpuChannelHost> gpu_channel_host = 47 std::move(gpu_channel_host), surface_handle, shared_command_buffer,
49 GpuService::GetInstance()->EstablishGpuChannelSync(); 48 stream_id, stream_priority, attributes, active_url,
50 if (!gpu_channel_host) 49 std::move(task_runner));
51 return false; 50 if (!command_buffer_proxy_impl_)
52 gpu::SurfaceHandle surface_handle = gfx::kNullAcceleratedWidget; 51 return false;
53 // TODO(penghuang): support shared group. 52 gpu::CommandBuffer* command_buffer = command_buffer_proxy_impl_.get();
54 gpu::CommandBufferProxyImpl* shared_command_buffer = nullptr; 53 gpu::GpuControl* gpu_control = command_buffer_proxy_impl_.get();
55 gpu::GpuStreamId stream_id = gpu::GpuStreamId::GPU_STREAM_DEFAULT;
56 gpu::GpuStreamPriority stream_priority = gpu::GpuStreamPriority::NORMAL;
57 gpu::gles2::ContextCreationAttribHelper attributes;
58 // TODO(penghuang): figure a useful active_url.
59 GURL active_url;
60 scoped_refptr<base::SingleThreadTaskRunner> task_runner =
61 base::ThreadTaskRunnerHandle::Get();
62 if (!attributes.Parse(attribs))
63 return false;
64 command_buffer_proxy_impl_ = gpu::CommandBufferProxyImpl::Create(
65 std::move(gpu_channel_host), surface_handle, shared_command_buffer,
66 stream_id, stream_priority, attributes, active_url,
67 std::move(task_runner));
68 if (!command_buffer_proxy_impl_)
69 return false;
70 command_buffer = command_buffer_proxy_impl_.get();
71 gpu_control = command_buffer_proxy_impl_.get();
72 }
73 54
74 constexpr gpu::SharedMemoryLimits default_limits; 55 constexpr gpu::SharedMemoryLimits default_limits;
75 gles2_helper_.reset(new gpu::gles2::GLES2CmdHelper(command_buffer)); 56 gles2_helper_.reset(new gpu::gles2::GLES2CmdHelper(command_buffer));
76 if (!gles2_helper_->Initialize(default_limits.command_buffer_size)) 57 if (!gles2_helper_->Initialize(default_limits.command_buffer_size))
77 return false; 58 return false;
78 gles2_helper_->SetAutomaticFlushes(false); 59 gles2_helper_->SetAutomaticFlushes(false);
79 transfer_buffer_.reset(new gpu::TransferBuffer(gles2_helper_.get())); 60 transfer_buffer_.reset(new gpu::TransferBuffer(gles2_helper_.get()));
80 gpu::Capabilities capabilities = gpu_control->GetCapabilities(); 61 gpu::Capabilities capabilities = gpu_control->GetCapabilities();
81 bool bind_generates_resource = 62 bool bind_generates_resource =
82 !!capabilities.bind_generates_resource_chromium; 63 !!capabilities.bind_generates_resource_chromium;
83 // TODO(piman): Some contexts (such as compositor) want this to be true, so 64 // TODO(piman): Some contexts (such as compositor) want this to be true, so
84 // this needs to be a public parameter. 65 // this needs to be a public parameter.
85 bool lose_context_when_out_of_memory = false; 66 bool lose_context_when_out_of_memory = false;
86 bool support_client_side_arrays = false; 67 bool support_client_side_arrays = false;
87 implementation_.reset(new gpu::gles2::GLES2Implementation( 68 implementation_.reset(new gpu::gles2::GLES2Implementation(
88 gles2_helper_.get(), NULL, transfer_buffer_.get(), 69 gles2_helper_.get(), NULL, transfer_buffer_.get(),
89 bind_generates_resource, lose_context_when_out_of_memory, 70 bind_generates_resource, lose_context_when_out_of_memory,
90 support_client_side_arrays, gpu_control)); 71 support_client_side_arrays, gpu_control));
91 if (!implementation_->Initialize(default_limits.start_transfer_buffer_size, 72 if (!implementation_->Initialize(default_limits.start_transfer_buffer_size,
92 default_limits.min_transfer_buffer_size, 73 default_limits.min_transfer_buffer_size,
93 default_limits.max_transfer_buffer_size, 74 default_limits.max_transfer_buffer_size,
94 default_limits.mapped_memory_reclaim_limit)) 75 default_limits.mapped_memory_reclaim_limit))
95 return false; 76 return false;
96 return true; 77 return true;
97 } 78 }
98 79
99 // static 80 // static
100 std::unique_ptr<GLES2Context> GLES2Context::CreateOffscreenContext( 81 std::unique_ptr<GLES2Context> GLES2Context::CreateOffscreenContext(
101 const std::vector<int32_t>& attribs, 82 const std::vector<int32_t>& attribs) {
102 shell::Connector* connector) {
103 std::unique_ptr<GLES2Context> gles2_context(new GLES2Context); 83 std::unique_ptr<GLES2Context> gles2_context(new GLES2Context);
104 if (!gles2_context->Initialize(attribs, connector)) 84 if (!gles2_context->Initialize(attribs))
105 gles2_context.reset(); 85 gles2_context.reset();
106 return gles2_context; 86 return gles2_context;
107 } 87 }
108 88
109 } // namespace ui 89 } // namespace ui
OLDNEW
« no previous file with comments | « services/ui/public/cpp/lib/context_provider.cc ('k') | services/ui/public/cpp/lib/raster_thread_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698