OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #if defined(ENABLE_GPU) | 5 #if defined(ENABLE_GPU) |
6 | 6 |
7 #include "content/renderer/gpu/webgraphicscontext3d_command_buffer_impl.h" | 7 #include "content/renderer/gpu/webgraphicscontext3d_command_buffer_impl.h" |
8 | 8 |
9 #include "gpu/GLES2/gl2.h" | 9 #include "gpu/GLES2/gl2.h" |
10 #ifndef GL_GLEXT_PROTOTYPES | 10 #ifndef GL_GLEXT_PROTOTYPES |
11 #define GL_GLEXT_PROTOTYPES 1 | 11 #define GL_GLEXT_PROTOTYPES 1 |
12 #endif | 12 #endif |
13 #include "gpu/GLES2/gl2ext.h" | 13 #include "gpu/GLES2/gl2ext.h" |
14 | 14 |
15 #include <algorithm> | 15 #include <algorithm> |
16 #include <set> | 16 #include <set> |
17 | 17 |
18 #include "base/bind.h" | 18 #include "base/bind.h" |
19 #include "base/lazy_instance.h" | 19 #include "base/lazy_instance.h" |
20 #include "base/string_tokenizer.h" | 20 #include "base/string_tokenizer.h" |
21 #include "base/command_line.h" | 21 #include "base/command_line.h" |
22 #include "base/debug/trace_event.h" | 22 #include "base/debug/trace_event.h" |
23 #include "base/logging.h" | 23 #include "base/logging.h" |
24 #include "base/metrics/histogram.h" | 24 #include "base/metrics/histogram.h" |
25 #include "base/synchronization/lock.h" | 25 #include "base/synchronization/lock.h" |
26 #include "content/common/content_switches.h" | 26 #include "content/public/common/content_switches.h" |
27 #include "content/renderer/gpu/gpu_channel_host.h" | 27 #include "content/renderer/gpu/gpu_channel_host.h" |
28 #include "content/renderer/render_thread_impl.h" | 28 #include "content/renderer/render_thread_impl.h" |
29 #include "content/renderer/render_view_impl.h" | 29 #include "content/renderer/render_view_impl.h" |
30 #include "gpu/command_buffer/client/gles2_implementation.h" | 30 #include "gpu/command_buffer/client/gles2_implementation.h" |
31 #include "gpu/command_buffer/common/constants.h" | 31 #include "gpu/command_buffer/common/constants.h" |
32 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" | 32 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" |
33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" | 33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" |
34 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" | 34 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" |
35 #include "webkit/glue/gl_bindings_skia_cmd_buffer.h" | 35 #include "webkit/glue/gl_bindings_skia_cmd_buffer.h" |
36 | 36 |
(...skipping 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1083 if (context_lost_callback_) { | 1083 if (context_lost_callback_) { |
1084 context_lost_callback_->onContextLost(); | 1084 context_lost_callback_->onContextLost(); |
1085 } | 1085 } |
1086 RenderViewImpl* renderview = | 1086 RenderViewImpl* renderview = |
1087 web_view_ ? RenderViewImpl::FromWebView(web_view_) : NULL; | 1087 web_view_ ? RenderViewImpl::FromWebView(web_view_) : NULL; |
1088 if (renderview) | 1088 if (renderview) |
1089 renderview->OnViewContextSwapBuffersAborted(); | 1089 renderview->OnViewContextSwapBuffersAborted(); |
1090 } | 1090 } |
1091 | 1091 |
1092 #endif // defined(ENABLE_GPU) | 1092 #endif // defined(ENABLE_GPU) |
OLD | NEW |