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

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

Issue 2472703003: Load the GL_KHR_debug entry points and log messages they produce. (Closed)
Patch Set: Update window system string 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
« no previous file with comments | « no previous file | content/public/browser/gpu_utils.cc » ('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 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 IPC_STRUCT_TRAITS_MEMBER(enable_nv12_dxgi_video) 78 IPC_STRUCT_TRAITS_MEMBER(enable_nv12_dxgi_video)
79 #endif 79 #endif
80 IPC_STRUCT_TRAITS_MEMBER(compile_shader_always_succeeds) 80 IPC_STRUCT_TRAITS_MEMBER(compile_shader_always_succeeds)
81 IPC_STRUCT_TRAITS_MEMBER(disable_gl_error_limit) 81 IPC_STRUCT_TRAITS_MEMBER(disable_gl_error_limit)
82 IPC_STRUCT_TRAITS_MEMBER(disable_glsl_translator) 82 IPC_STRUCT_TRAITS_MEMBER(disable_glsl_translator)
83 IPC_STRUCT_TRAITS_MEMBER(disable_gpu_driver_bug_workarounds) 83 IPC_STRUCT_TRAITS_MEMBER(disable_gpu_driver_bug_workarounds)
84 IPC_STRUCT_TRAITS_MEMBER(disable_shader_name_hashing) 84 IPC_STRUCT_TRAITS_MEMBER(disable_shader_name_hashing)
85 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_command_logging) 85 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_command_logging)
86 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_debugging) 86 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_debugging)
87 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_service_logging_gpu) 87 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_service_logging_gpu)
88 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_driver_debug_logging)
88 IPC_STRUCT_TRAITS_MEMBER(disable_gpu_program_cache) 89 IPC_STRUCT_TRAITS_MEMBER(disable_gpu_program_cache)
89 IPC_STRUCT_TRAITS_MEMBER(enforce_gl_minimums) 90 IPC_STRUCT_TRAITS_MEMBER(enforce_gl_minimums)
90 IPC_STRUCT_TRAITS_MEMBER(force_gpu_mem_available) 91 IPC_STRUCT_TRAITS_MEMBER(force_gpu_mem_available)
91 IPC_STRUCT_TRAITS_MEMBER(gpu_program_cache_size) 92 IPC_STRUCT_TRAITS_MEMBER(gpu_program_cache_size)
92 IPC_STRUCT_TRAITS_MEMBER(disable_gpu_shader_disk_cache) 93 IPC_STRUCT_TRAITS_MEMBER(disable_gpu_shader_disk_cache)
93 IPC_STRUCT_TRAITS_MEMBER(enable_threaded_texture_mailboxes) 94 IPC_STRUCT_TRAITS_MEMBER(enable_threaded_texture_mailboxes)
94 IPC_STRUCT_TRAITS_MEMBER(gl_shader_interm_output) 95 IPC_STRUCT_TRAITS_MEMBER(gl_shader_interm_output)
95 IPC_STRUCT_TRAITS_MEMBER(emulate_shader_precision) 96 IPC_STRUCT_TRAITS_MEMBER(emulate_shader_precision)
96 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_service_logging) 97 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_service_logging)
97 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_service_tracing) 98 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_service_tracing)
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 IPC_MESSAGE_CONTROL1(GpuHostMsg_DidDestroyOffscreenContext, GURL /* url */) 225 IPC_MESSAGE_CONTROL1(GpuHostMsg_DidDestroyOffscreenContext, GURL /* url */)
225 226
226 // 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.
227 IPC_MESSAGE_CONTROL3(GpuHostMsg_OnLogMessage, 228 IPC_MESSAGE_CONTROL3(GpuHostMsg_OnLogMessage,
228 int /*severity*/, 229 int /*severity*/,
229 std::string /* header */, 230 std::string /* header */,
230 std::string /* message */) 231 std::string /* message */)
231 232
232 // 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.
233 IPC_MESSAGE_CONTROL1(GpuHostMsg_FieldTrialActivated, std::string /* name */) 234 IPC_MESSAGE_CONTROL1(GpuHostMsg_FieldTrialActivated, std::string /* name */)
OLDNEW
« no previous file with comments | « no previous file | content/public/browser/gpu_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698