| OLD | NEW |
| 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 #include "content/browser/gpu/gpu_process_host.h" | 5 #include "content/browser/gpu/gpu_process_host.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 #include <list> | 10 #include <list> |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 bool GpuProcessHost::hardware_gpu_enabled_ = true; | 99 bool GpuProcessHost::hardware_gpu_enabled_ = true; |
| 100 int GpuProcessHost::gpu_crash_count_ = 0; | 100 int GpuProcessHost::gpu_crash_count_ = 0; |
| 101 int GpuProcessHost::gpu_recent_crash_count_ = 0; | 101 int GpuProcessHost::gpu_recent_crash_count_ = 0; |
| 102 bool GpuProcessHost::crashed_before_ = false; | 102 bool GpuProcessHost::crashed_before_ = false; |
| 103 int GpuProcessHost::swiftshader_crash_count_ = 0; | 103 int GpuProcessHost::swiftshader_crash_count_ = 0; |
| 104 | 104 |
| 105 namespace { | 105 namespace { |
| 106 | 106 |
| 107 // Command-line switches to propagate to the GPU process. | 107 // Command-line switches to propagate to the GPU process. |
| 108 static const char* const kSwitchNames[] = { | 108 static const char* const kSwitchNames[] = { |
| 109 switches::kCreateDefaultGLContext, |
| 109 switches::kDisableAcceleratedVideoDecode, | 110 switches::kDisableAcceleratedVideoDecode, |
| 110 switches::kDisableBreakpad, | 111 switches::kDisableBreakpad, |
| 111 switches::kDisableGpuSandbox, | 112 switches::kDisableGpuSandbox, |
| 112 switches::kDisableGpuWatchdog, | 113 switches::kDisableGpuWatchdog, |
| 113 switches::kDisableGLExtensions, | 114 switches::kDisableGLExtensions, |
| 114 switches::kDisableLogging, | 115 switches::kDisableLogging, |
| 115 switches::kDisableSeccompFilterSandbox, | 116 switches::kDisableSeccompFilterSandbox, |
| 116 #if defined(ENABLE_WEBRTC) | 117 #if defined(ENABLE_WEBRTC) |
| 117 switches::kDisableWebRtcHWEncoding, | 118 switches::kDisableWebRtcHWEncoding, |
| 118 #endif | 119 #endif |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 switches::kOzonePlatform, | 152 switches::kOzonePlatform, |
| 152 #endif | 153 #endif |
| 153 #if defined(USE_X11) && !defined(OS_CHROMEOS) | 154 #if defined(USE_X11) && !defined(OS_CHROMEOS) |
| 154 switches::kWindowDepth, | 155 switches::kWindowDepth, |
| 155 switches::kX11Display, | 156 switches::kX11Display, |
| 156 switches::kX11VisualID, | 157 switches::kX11VisualID, |
| 157 #endif | 158 #endif |
| 158 switches::kGpuTestingGLVendor, | 159 switches::kGpuTestingGLVendor, |
| 159 switches::kGpuTestingGLRenderer, | 160 switches::kGpuTestingGLRenderer, |
| 160 switches::kGpuTestingGLVersion, | 161 switches::kGpuTestingGLVersion, |
| 161 switches::kDisableGpuDriverBugWorkarounds | 162 switches::kDisableGpuDriverBugWorkarounds}; |
| 162 }; | |
| 163 | 163 |
| 164 enum GPUProcessLifetimeEvent { | 164 enum GPUProcessLifetimeEvent { |
| 165 LAUNCHED, | 165 LAUNCHED, |
| 166 DIED_FIRST_TIME, | 166 DIED_FIRST_TIME, |
| 167 DIED_SECOND_TIME, | 167 DIED_SECOND_TIME, |
| 168 DIED_THIRD_TIME, | 168 DIED_THIRD_TIME, |
| 169 DIED_FOURTH_TIME, | 169 DIED_FOURTH_TIME, |
| 170 GPU_PROCESS_LIFETIME_EVENT_MAX = 100 | 170 GPU_PROCESS_LIFETIME_EVENT_MAX = 100 |
| 171 }; | 171 }; |
| 172 | 172 |
| (...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1189 TRACE_EVENT0("gpu", "GpuProcessHost::OnCacheShader"); | 1189 TRACE_EVENT0("gpu", "GpuProcessHost::OnCacheShader"); |
| 1190 ClientIdToShaderCacheMap::iterator iter = | 1190 ClientIdToShaderCacheMap::iterator iter = |
| 1191 client_id_to_shader_cache_.find(client_id); | 1191 client_id_to_shader_cache_.find(client_id); |
| 1192 // If the cache doesn't exist then this is an off the record profile. | 1192 // If the cache doesn't exist then this is an off the record profile. |
| 1193 if (iter == client_id_to_shader_cache_.end()) | 1193 if (iter == client_id_to_shader_cache_.end()) |
| 1194 return; | 1194 return; |
| 1195 iter->second->Cache(GetShaderPrefixKey() + ":" + key, shader); | 1195 iter->second->Cache(GetShaderPrefixKey() + ":" + key, shader); |
| 1196 } | 1196 } |
| 1197 | 1197 |
| 1198 } // namespace content | 1198 } // namespace content |
| OLD | NEW |