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

Side by Side Diff: content/common/gpu_host_messages.h

Issue 2474253002: Rename GpuPreferences::enable_unsafe_es3_apis to enable_es3_apis (Closed)
Patch Set: rebase Created 4 years, 1 month 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 // Multiply-included message file, hence no include guard here, but see below 5 // Multiply-included message file, hence no include guard here, but see below
6 // for a much smaller-than-usual include guard section. 6 // for a much smaller-than-usual include guard section.
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "content/common/content_export.h" 9 #include "content/common/content_export.h"
10 #include "content/common/establish_channel_params.h" 10 #include "content/common/establish_channel_params.h"
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 IPC_STRUCT_TRAITS_MEMBER(disable_gpu_program_cache) 89 IPC_STRUCT_TRAITS_MEMBER(disable_gpu_program_cache)
90 IPC_STRUCT_TRAITS_MEMBER(enforce_gl_minimums) 90 IPC_STRUCT_TRAITS_MEMBER(enforce_gl_minimums)
91 IPC_STRUCT_TRAITS_MEMBER(force_gpu_mem_available) 91 IPC_STRUCT_TRAITS_MEMBER(force_gpu_mem_available)
92 IPC_STRUCT_TRAITS_MEMBER(gpu_program_cache_size) 92 IPC_STRUCT_TRAITS_MEMBER(gpu_program_cache_size)
93 IPC_STRUCT_TRAITS_MEMBER(disable_gpu_shader_disk_cache) 93 IPC_STRUCT_TRAITS_MEMBER(disable_gpu_shader_disk_cache)
94 IPC_STRUCT_TRAITS_MEMBER(enable_threaded_texture_mailboxes) 94 IPC_STRUCT_TRAITS_MEMBER(enable_threaded_texture_mailboxes)
95 IPC_STRUCT_TRAITS_MEMBER(gl_shader_interm_output) 95 IPC_STRUCT_TRAITS_MEMBER(gl_shader_interm_output)
96 IPC_STRUCT_TRAITS_MEMBER(emulate_shader_precision) 96 IPC_STRUCT_TRAITS_MEMBER(emulate_shader_precision)
97 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_service_logging) 97 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_service_logging)
98 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_service_tracing) 98 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_service_tracing)
99 IPC_STRUCT_TRAITS_MEMBER(enable_unsafe_es3_apis) 99 IPC_STRUCT_TRAITS_MEMBER(enable_es3_apis)
100 IPC_STRUCT_TRAITS_MEMBER(use_passthrough_cmd_decoder) 100 IPC_STRUCT_TRAITS_MEMBER(use_passthrough_cmd_decoder)
101 IPC_STRUCT_TRAITS_END() 101 IPC_STRUCT_TRAITS_END()
102 102
103 //------------------------------------------------------------------------------ 103 //------------------------------------------------------------------------------
104 // GPU Messages 104 // GPU Messages
105 // These are messages from the browser to the GPU process. 105 // These are messages from the browser to the GPU process.
106 106
107 // Tells the GPU process to initialize itself. The browser explicitly 107 // Tells the GPU process to initialize itself. The browser explicitly
108 // requests this be done so that we are guaranteed that the channel is set 108 // requests this be done so that we are guaranteed that the channel is set
109 // up between the browser and GPU process before doing any work that might 109 // up between the browser and GPU process before doing any work that might
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 IPC_MESSAGE_CONTROL1(GpuHostMsg_DidDestroyOffscreenContext, GURL /* url */) 225 IPC_MESSAGE_CONTROL1(GpuHostMsg_DidDestroyOffscreenContext, GURL /* url */)
226 226
227 // Message from GPU to add a GPU log message to the about:gpu page. 227 // Message from GPU to add a GPU log message to the about:gpu page.
228 IPC_MESSAGE_CONTROL3(GpuHostMsg_OnLogMessage, 228 IPC_MESSAGE_CONTROL3(GpuHostMsg_OnLogMessage,
229 int /*severity*/, 229 int /*severity*/,
230 std::string /* header */, 230 std::string /* header */,
231 std::string /* message */) 231 std::string /* message */)
232 232
233 // Sent by the GPU process to indicate that a fields trial has been activated. 233 // Sent by the GPU process to indicate that a fields trial has been activated.
234 IPC_MESSAGE_CONTROL1(GpuHostMsg_FieldTrialActivated, std::string /* name */) 234 IPC_MESSAGE_CONTROL1(GpuHostMsg_FieldTrialActivated, std::string /* name */)
OLDNEW
« no previous file with comments | « content/browser/gpu/gpu_data_manager_impl_private.cc ('k') | gpu/command_buffer/service/context_group.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698