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

Side by Side Diff: content/common/gpu/gpu_messages.h

Issue 15890002: Display GL window system binding information in about:gpu (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 IPC_STRUCT_TRAITS_MEMBER(driver_version) 138 IPC_STRUCT_TRAITS_MEMBER(driver_version)
139 IPC_STRUCT_TRAITS_MEMBER(driver_date) 139 IPC_STRUCT_TRAITS_MEMBER(driver_date)
140 IPC_STRUCT_TRAITS_MEMBER(pixel_shader_version) 140 IPC_STRUCT_TRAITS_MEMBER(pixel_shader_version)
141 IPC_STRUCT_TRAITS_MEMBER(vertex_shader_version) 141 IPC_STRUCT_TRAITS_MEMBER(vertex_shader_version)
142 IPC_STRUCT_TRAITS_MEMBER(machine_model) 142 IPC_STRUCT_TRAITS_MEMBER(machine_model)
143 IPC_STRUCT_TRAITS_MEMBER(gl_version) 143 IPC_STRUCT_TRAITS_MEMBER(gl_version)
144 IPC_STRUCT_TRAITS_MEMBER(gl_version_string) 144 IPC_STRUCT_TRAITS_MEMBER(gl_version_string)
145 IPC_STRUCT_TRAITS_MEMBER(gl_vendor) 145 IPC_STRUCT_TRAITS_MEMBER(gl_vendor)
146 IPC_STRUCT_TRAITS_MEMBER(gl_renderer) 146 IPC_STRUCT_TRAITS_MEMBER(gl_renderer)
147 IPC_STRUCT_TRAITS_MEMBER(gl_extensions) 147 IPC_STRUCT_TRAITS_MEMBER(gl_extensions)
148 IPC_STRUCT_TRAITS_MEMBER(gl_ws_vendor)
149 IPC_STRUCT_TRAITS_MEMBER(gl_ws_version)
150 IPC_STRUCT_TRAITS_MEMBER(gl_ws_extensions)
148 IPC_STRUCT_TRAITS_MEMBER(can_lose_context) 151 IPC_STRUCT_TRAITS_MEMBER(can_lose_context)
149 IPC_STRUCT_TRAITS_MEMBER(gpu_accessible) 152 IPC_STRUCT_TRAITS_MEMBER(gpu_accessible)
150 IPC_STRUCT_TRAITS_MEMBER(performance_stats) 153 IPC_STRUCT_TRAITS_MEMBER(performance_stats)
151 IPC_STRUCT_TRAITS_MEMBER(software_rendering) 154 IPC_STRUCT_TRAITS_MEMBER(software_rendering)
152 IPC_STRUCT_TRAITS_MEMBER(sandboxed) 155 IPC_STRUCT_TRAITS_MEMBER(sandboxed)
153 #if defined(OS_WIN) 156 #if defined(OS_WIN)
154 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics) 157 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics)
155 #endif 158 #endif
156 IPC_STRUCT_TRAITS_END() 159 IPC_STRUCT_TRAITS_END()
157 160
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
667 670
668 // Confirm decoder has been flushed. 671 // Confirm decoder has been flushed.
669 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) 672 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone)
670 673
671 // Confirm decoder has been reset. 674 // Confirm decoder has been reset.
672 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) 675 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone)
673 676
674 // Video decoder has encountered an error. 677 // Video decoder has encountered an error.
675 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, 678 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification,
676 uint32) /* Error ID */ 679 uint32) /* Error ID */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698