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

Side by Side Diff: components/mus/gles2/command_buffer_local.cc

Issue 1894313002: Removed implementation of CHROMIUM_subscribe_uniform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed a couple more mus/ references Created 4 years, 8 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "components/mus/gles2/command_buffer_local.h" 5 #include "components/mus/gles2/command_buffer_local.h"
6 6
7 #include "base/atomic_sequence_num.h" 7 #include "base/atomic_sequence_num.h"
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/memory/shared_memory.h" 9 #include "base/memory/shared_memory.h"
10 #include "base/synchronization/waitable_event.h" 10 #include "base/synchronization/waitable_event.h"
11 #include "base/thread_task_runner_handle.h" 11 #include "base/thread_task_runner_handle.h"
12 #include "components/mus/gles2/command_buffer_driver.h" 12 #include "components/mus/gles2/command_buffer_driver.h"
13 #include "components/mus/gles2/command_buffer_local_client.h" 13 #include "components/mus/gles2/command_buffer_local_client.h"
14 #include "components/mus/gles2/command_buffer_type_conversions.h" 14 #include "components/mus/gles2/command_buffer_type_conversions.h"
15 #include "components/mus/gles2/gpu_memory_tracker.h" 15 #include "components/mus/gles2/gpu_memory_tracker.h"
16 #include "components/mus/gles2/gpu_state.h" 16 #include "components/mus/gles2/gpu_state.h"
17 #include "components/mus/gles2/mojo_buffer_backing.h" 17 #include "components/mus/gles2/mojo_buffer_backing.h"
18 #include "components/mus/gles2/mojo_gpu_memory_buffer.h" 18 #include "components/mus/gles2/mojo_gpu_memory_buffer.h"
19 #include "gpu/command_buffer/client/gpu_control_client.h" 19 #include "gpu/command_buffer/client/gpu_control_client.h"
20 #include "gpu/command_buffer/common/gpu_memory_buffer_support.h" 20 #include "gpu/command_buffer/common/gpu_memory_buffer_support.h"
21 #include "gpu/command_buffer/common/sync_token.h" 21 #include "gpu/command_buffer/common/sync_token.h"
22 #include "gpu/command_buffer/service/command_buffer_service.h" 22 #include "gpu/command_buffer/service/command_buffer_service.h"
23 #include "gpu/command_buffer/service/context_group.h" 23 #include "gpu/command_buffer/service/context_group.h"
24 #include "gpu/command_buffer/service/image_manager.h" 24 #include "gpu/command_buffer/service/image_manager.h"
25 #include "gpu/command_buffer/service/memory_tracking.h" 25 #include "gpu/command_buffer/service/memory_tracking.h"
26 #include "gpu/command_buffer/service/shader_translator_cache.h" 26 #include "gpu/command_buffer/service/shader_translator_cache.h"
27 #include "gpu/command_buffer/service/transfer_buffer_manager.h" 27 #include "gpu/command_buffer/service/transfer_buffer_manager.h"
28 #include "gpu/command_buffer/service/valuebuffer_manager.h"
29 #include "mojo/platform_handle/platform_handle_functions.h" 28 #include "mojo/platform_handle/platform_handle_functions.h"
30 #include "ui/gfx/buffer_format_util.h" 29 #include "ui/gfx/buffer_format_util.h"
31 #include "ui/gfx/vsync_provider.h" 30 #include "ui/gfx/vsync_provider.h"
32 #include "ui/gl/gl_context.h" 31 #include "ui/gl/gl_context.h"
33 #include "ui/gl/gl_image_shared_memory.h" 32 #include "ui/gl/gl_image_shared_memory.h"
34 #include "ui/gl/gl_surface.h" 33 #include "ui/gl/gl_surface.h"
35 34
36 namespace mus { 35 namespace mus {
37 36
38 namespace { 37 namespace {
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 client_->UpdateVSyncParameters(timebase, interval); 584 client_->UpdateVSyncParameters(timebase, interval);
586 } 585 }
587 586
588 void CommandBufferLocal::OnGpuCompletedSwapBuffersOnClientThread( 587 void CommandBufferLocal::OnGpuCompletedSwapBuffersOnClientThread(
589 gfx::SwapResult result) { 588 gfx::SwapResult result) {
590 if (client_) 589 if (client_)
591 client_->GpuCompletedSwapBuffers(result); 590 client_->GpuCompletedSwapBuffers(result);
592 } 591 }
593 592
594 } // namespace mus 593 } // namespace mus
OLDNEW
« no previous file with comments | « components/mus/gles2/command_buffer_driver.cc ('k') | content/browser/gpu/gpu_process_host_ui_shim.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698