summaryrefslogtreecommitdiff
path: root/chromium/cc/resources/texture_mailbox.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/cc/resources/texture_mailbox.cc')
-rw-r--r--chromium/cc/resources/texture_mailbox.cc25
1 files changed, 15 insertions, 10 deletions
diff --git a/chromium/cc/resources/texture_mailbox.cc b/chromium/cc/resources/texture_mailbox.cc
index 92736f41fe7..9bf242e1d7c 100644
--- a/chromium/cc/resources/texture_mailbox.cc
+++ b/chromium/cc/resources/texture_mailbox.cc
@@ -9,25 +9,31 @@
namespace cc {
-TextureMailbox::TextureMailbox() : shared_memory_(NULL) {}
+TextureMailbox::TextureMailbox() : shared_bitmap_(NULL) {
+}
TextureMailbox::TextureMailbox(const gpu::MailboxHolder& mailbox_holder)
: mailbox_holder_(mailbox_holder),
- shared_memory_(NULL),
- allow_overlay_(false) {}
+ shared_bitmap_(NULL),
+ allow_overlay_(false),
+ nearest_neighbor_(false) {
+}
TextureMailbox::TextureMailbox(const gpu::Mailbox& mailbox,
uint32 target,
uint32 sync_point)
: mailbox_holder_(mailbox, target, sync_point),
- shared_memory_(NULL),
- allow_overlay_(false) {}
+ shared_bitmap_(NULL),
+ allow_overlay_(false),
+ nearest_neighbor_(false) {
+}
-TextureMailbox::TextureMailbox(base::SharedMemory* shared_memory,
+TextureMailbox::TextureMailbox(SharedBitmap* shared_bitmap,
const gfx::Size& size)
- : shared_memory_(shared_memory),
+ : shared_bitmap_(shared_bitmap),
shared_memory_size_(size),
- allow_overlay_(false) {
+ allow_overlay_(false),
+ nearest_neighbor_(false) {
// If an embedder of cc gives an invalid TextureMailbox, we should crash
// here to identify the offender.
CHECK(SharedBitmap::VerifySizeInBytes(shared_memory_size_));
@@ -41,8 +47,7 @@ bool TextureMailbox::Equals(const TextureMailbox& other) const {
other.mailbox_holder_.mailbox.name,
sizeof(mailbox_holder_.mailbox.name));
} else if (other.IsSharedMemory()) {
- return IsSharedMemory() &&
- shared_memory_->handle() == other.shared_memory_->handle();
+ return IsSharedMemory() && (shared_bitmap_ == other.shared_bitmap_);
}
DCHECK(!other.IsValid());