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/renderer/gpu/mailbox_output_surface.h" | 5 #include "content/renderer/gpu/mailbox_output_surface.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "cc/compositor_frame.h" | 8 #include "cc/output/compositor_frame.h" |
9 #include "cc/compositor_frame_ack.h" | 9 #include "cc/output/compositor_frame_ack.h" |
10 #include "cc/gl_frame_data.h" | 10 #include "cc/output/gl_frame_data.h" |
11 #include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3
D.h" | 11 #include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3
D.h" |
12 #include "third_party/khronos/GLES2/gl2.h" | 12 #include "third_party/khronos/GLES2/gl2.h" |
13 #include "third_party/khronos/GLES2/gl2ext.h" | 13 #include "third_party/khronos/GLES2/gl2ext.h" |
14 | 14 |
15 using cc::CompositorFrame; | 15 using cc::CompositorFrame; |
16 using cc::GLFrameData; | 16 using cc::GLFrameData; |
17 using gpu::Mailbox; | 17 using gpu::Mailbox; |
18 using WebKit::WebGraphicsContext3D; | 18 using WebKit::WebGraphicsContext3D; |
19 | 19 |
20 namespace content { | 20 namespace content { |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 | 155 |
156 void MailboxOutputSurface::SwapBuffers() { | 156 void MailboxOutputSurface::SwapBuffers() { |
157 } | 157 } |
158 | 158 |
159 void MailboxOutputSurface::PostSubBuffer(gfx::Rect rect) { | 159 void MailboxOutputSurface::PostSubBuffer(gfx::Rect rect) { |
160 NOTIMPLEMENTED() | 160 NOTIMPLEMENTED() |
161 << "Partial swap not supported with composite-to-mailbox yet."; | 161 << "Partial swap not supported with composite-to-mailbox yet."; |
162 } | 162 } |
163 | 163 |
164 } // namespace content | 164 } // namespace content |
OLD | NEW |