Home | History | Annotate | Download | only in output
      1 // Copyright 2013 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #include "cc/output/copy_output_result.h"
      6 
      7 #include "base/logging.h"
      8 #include "cc/resources/texture_mailbox.h"
      9 #include "third_party/skia/include/core/SkBitmap.h"
     10 
     11 namespace cc {
     12 
     13 CopyOutputResult::CopyOutputResult() {}
     14 
     15 CopyOutputResult::CopyOutputResult(scoped_ptr<SkBitmap> bitmap)
     16     : size_(bitmap->width(), bitmap->height()),
     17       bitmap_(bitmap.Pass()) {
     18   DCHECK(bitmap_);
     19 }
     20 
     21 CopyOutputResult::CopyOutputResult(gfx::Size size,
     22                                    scoped_ptr<TextureMailbox> texture_mailbox)
     23     : size_(size),
     24       texture_mailbox_(texture_mailbox.Pass()) {
     25   DCHECK(texture_mailbox_);
     26   DCHECK(texture_mailbox_->IsTexture());
     27 }
     28 
     29 CopyOutputResult::~CopyOutputResult() {
     30   if (texture_mailbox_)
     31     texture_mailbox_->RunReleaseCallback(0, false);
     32 }
     33 
     34 scoped_ptr<SkBitmap> CopyOutputResult::TakeBitmap() {
     35   return bitmap_.Pass();
     36 }
     37 
     38 scoped_ptr<TextureMailbox> CopyOutputResult::TakeTexture() {
     39   return texture_mailbox_.Pass();
     40 }
     41 
     42 }  // namespace cc
     43