| 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/output/compositor_frame.h" | 8 #include "cc/output/compositor_frame.h" |
| 9 #include "cc/output/compositor_frame_ack.h" | 9 #include "cc/output/compositor_frame_ack.h" |
| 10 #include "cc/output/gl_frame_data.h" | 10 #include "cc/output/gl_frame_data.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 swap_frame_message_queue, | 38 swap_frame_message_queue, |
| 39 true), | 39 true), |
| 40 fbo_(0), | 40 fbo_(0), |
| 41 is_backbuffer_discarded_(false), | 41 is_backbuffer_discarded_(false), |
| 42 format_(format) { | 42 format_(format) { |
| 43 pending_textures_.push_back(TransferableFrame()); | 43 pending_textures_.push_back(TransferableFrame()); |
| 44 capabilities_.uses_default_gl_framebuffer = false; | 44 capabilities_.uses_default_gl_framebuffer = false; |
| 45 } | 45 } |
| 46 | 46 |
| 47 MailboxOutputSurface::~MailboxOutputSurface() { | 47 MailboxOutputSurface::~MailboxOutputSurface() { |
| 48 } | |
| 49 | |
| 50 void MailboxOutputSurface::DetachFromClient() { | |
| 51 DiscardBackbuffer(); | 48 DiscardBackbuffer(); |
| 52 while (!pending_textures_.empty()) { | 49 while (!pending_textures_.empty()) { |
| 53 if (pending_textures_.front().texture_id) { | 50 if (pending_textures_.front().texture_id) { |
| 54 context_provider_->ContextGL()->DeleteTextures( | 51 context_provider_->ContextGL()->DeleteTextures( |
| 55 1, &pending_textures_.front().texture_id); | 52 1, &pending_textures_.front().texture_id); |
| 56 } | 53 } |
| 57 pending_textures_.pop_front(); | 54 pending_textures_.pop_front(); |
| 58 } | 55 } |
| 59 cc::OutputSurface::DetachFromClient(); | |
| 60 } | 56 } |
| 61 | 57 |
| 62 void MailboxOutputSurface::EnsureBackbuffer() { | 58 void MailboxOutputSurface::EnsureBackbuffer() { |
| 63 is_backbuffer_discarded_ = false; | 59 is_backbuffer_discarded_ = false; |
| 64 | 60 |
| 65 GLES2Interface* gl = context_provider_->ContextGL(); | 61 GLES2Interface* gl = context_provider_->ContextGL(); |
| 66 | 62 |
| 67 if (!current_backing_.texture_id) { | 63 if (!current_backing_.texture_id) { |
| 68 // Find a texture of matching size to recycle. | 64 // Find a texture of matching size to recycle. |
| 69 while (!returned_textures_.empty()) { | 65 while (!returned_textures_.empty()) { |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 pending_textures_.push_back(current_backing_); | 211 pending_textures_.push_back(current_backing_); |
| 216 current_backing_ = TransferableFrame(); | 212 current_backing_ = TransferableFrame(); |
| 217 } | 213 } |
| 218 | 214 |
| 219 size_t MailboxOutputSurface::GetNumAcksPending() { | 215 size_t MailboxOutputSurface::GetNumAcksPending() { |
| 220 DCHECK(pending_textures_.size()); | 216 DCHECK(pending_textures_.size()); |
| 221 return pending_textures_.size() - 1; | 217 return pending_textures_.size() - 1; |
| 222 } | 218 } |
| 223 | 219 |
| 224 } // namespace content | 220 } // namespace content |
| OLD | NEW |