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

Side by Side Diff: services/gles2/gpu_impl.cc

Issue 769173002: Move native_viewport and gles2 service impls to //services (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « services/gles2/gpu_impl.h ('k') | services/gles2/mojo_buffer_backing.h » ('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 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 "mojo/services/gles2/gpu_impl.h" 5 #include "services/gles2/gpu_impl.h"
6 6
7 #include "gpu/command_buffer/service/mailbox_manager.h" 7 #include "gpu/command_buffer/service/mailbox_manager.h"
8 #include "gpu/command_buffer/service/mailbox_manager_impl.h" 8 #include "gpu/command_buffer/service/mailbox_manager_impl.h"
9 #include "gpu/command_buffer/service/sync_point_manager.h" 9 #include "gpu/command_buffer/service/sync_point_manager.h"
10 #include "mojo/converters/geometry/geometry_type_converters.h" 10 #include "mojo/converters/geometry/geometry_type_converters.h"
11 #include "mojo/services/gles2/command_buffer_driver.h" 11 #include "services/gles2/command_buffer_driver.h"
12 #include "mojo/services/gles2/command_buffer_impl.h" 12 #include "services/gles2/command_buffer_impl.h"
13 #include "ui/gl/gl_share_group.h" 13 #include "ui/gl/gl_share_group.h"
14 #include "ui/gl/gl_surface.h" 14 #include "ui/gl/gl_surface.h"
15 15
16 namespace mojo { 16 namespace mojo {
17 17
18 GpuImpl::State::State() 18 GpuImpl::State::State()
19 : control_thread_("gpu_command_buffer_control"), 19 : control_thread_("gpu_command_buffer_control"),
20 sync_point_manager_(new gpu::SyncPointManager), 20 sync_point_manager_(new gpu::SyncPointManager),
21 share_group_(new gfx::GLShareGroup), 21 share_group_(new gfx::GLShareGroup),
22 mailbox_manager_(new gpu::gles2::MailboxManagerImpl) { 22 mailbox_manager_(new gpu::gles2::MailboxManagerImpl) {
(...skipping 30 matching lines...) Expand all
53 InterfaceRequest<CommandBuffer> request) { 53 InterfaceRequest<CommandBuffer> request) {
54 new CommandBufferImpl(request.Pass(), ViewportParameterListenerPtr(), 54 new CommandBufferImpl(request.Pass(), ViewportParameterListenerPtr(),
55 state_->control_task_runner(), 55 state_->control_task_runner(),
56 state_->sync_point_manager(), 56 state_->sync_point_manager(),
57 make_scoped_ptr(new CommandBufferDriver( 57 make_scoped_ptr(new CommandBufferDriver(
58 state_->share_group(), state_->mailbox_manager(), 58 state_->share_group(), state_->mailbox_manager(),
59 state_->sync_point_manager()))); 59 state_->sync_point_manager())));
60 } 60 }
61 61
62 } // namespace mojo 62 } // namespace mojo
OLDNEW
« no previous file with comments | « services/gles2/gpu_impl.h ('k') | services/gles2/mojo_buffer_backing.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698