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

Unified Diff: content/common/gpu/gpu_host_messages.h

Issue 1753383003: Get rid of gpu related switches by passing gpu::GpuPreferences via IPC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: content/common/gpu/gpu_host_messages.h
diff --git a/content/common/gpu/gpu_host_messages.h b/content/common/gpu/gpu_host_messages.h
index eea2fafe446b20d5f2ab61fc32647ec2b57fa3c5..e5659b72044518b1054ac3e60ea4eb4b134c2804 100644
--- a/content/common/gpu/gpu_host_messages.h
+++ b/content/common/gpu/gpu_host_messages.h
@@ -15,6 +15,7 @@
#include "content/public/common/gpu_memory_stats.h"
#include "gpu/command_buffer/common/sync_token.h"
#include "gpu/command_buffer/common/value_state.h"
+#include "gpu/command_buffer/service/gpu_preferences.h"
#include "gpu/config/gpu_info.h"
#include "ipc/ipc_channel_handle.h"
#include "ipc/ipc_message_macros.h"
@@ -99,6 +100,32 @@ IPC_STRUCT_TRAITS_BEGIN(content::BufferPresentedParams)
IPC_STRUCT_TRAITS_END()
#endif
+IPC_STRUCT_TRAITS_BEGIN(gpu::GpuPreferences)
+ IPC_STRUCT_TRAITS_MEMBER(single_process)
+ IPC_STRUCT_TRAITS_MEMBER(in_process_gpu)
+ IPC_STRUCT_TRAITS_MEMBER(compile_shader_always_succeeds)
+ IPC_STRUCT_TRAITS_MEMBER(disable_gl_error_limit)
+ IPC_STRUCT_TRAITS_MEMBER(disable_glsl_translator)
+ IPC_STRUCT_TRAITS_MEMBER(disable_gpu_driver_bug_workarounds)
+ IPC_STRUCT_TRAITS_MEMBER(disable_shader_name_hashing)
+ IPC_STRUCT_TRAITS_MEMBER(enable_gpu_command_logging)
+ IPC_STRUCT_TRAITS_MEMBER(enable_gpu_debugging)
+ IPC_STRUCT_TRAITS_MEMBER(enable_gpu_service_logging_gpu)
+ IPC_STRUCT_TRAITS_MEMBER(disable_gpu_program_cache)
+ IPC_STRUCT_TRAITS_MEMBER(enforce_gl_minimums)
+ IPC_STRUCT_TRAITS_MEMBER(force_gpu_mem_available)
+ IPC_STRUCT_TRAITS_MEMBER(gpu_program_cache_size)
+ IPC_STRUCT_TRAITS_MEMBER(disable_gpu_shader_disk_cache)
+ IPC_STRUCT_TRAITS_MEMBER(enable_share_group_async_texture_upload)
+ IPC_STRUCT_TRAITS_MEMBER(enable_subscribe_uniform_extension)
+ IPC_STRUCT_TRAITS_MEMBER(enable_threaded_texture_mailboxes)
+ IPC_STRUCT_TRAITS_MEMBER(gl_shader_interm_output)
+ IPC_STRUCT_TRAITS_MEMBER(emulate_shader_precision)
+ IPC_STRUCT_TRAITS_MEMBER(enable_gpu_service_logging)
+ IPC_STRUCT_TRAITS_MEMBER(enable_gpu_service_tracing)
+ IPC_STRUCT_TRAITS_MEMBER(enable_unsafe_es3_apis)
+IPC_STRUCT_TRAITS_END()
+
//------------------------------------------------------------------------------
// GPU Messages
// These are messages from the browser to the GPU process.
@@ -108,7 +135,8 @@ IPC_STRUCT_TRAITS_END()
// up between the browser and GPU process before doing any work that might
// potentially crash the GPU process. Detection of the child process
// exiting abruptly is predicated on having the IPC channel set up.
-IPC_MESSAGE_CONTROL0(GpuMsg_Initialize)
+IPC_MESSAGE_CONTROL1(GpuMsg_Initialize,
+ gpu::GpuPreferences /* gpu_prefernces */)
// Tells the GPU process to shutdown itself.
IPC_MESSAGE_CONTROL0(GpuMsg_Finalize)

Powered by Google App Engine
This is Rietveld 408576698