1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50

cc / paint / skottie_transfer_cache_entry.cc [blame]

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "cc/paint/skottie_transfer_cache_entry.h"

#include <utility>

#include "cc/paint/skottie_wrapper.h"

namespace cc {

ClientSkottieTransferCacheEntry::ClientSkottieTransferCacheEntry(
    scoped_refptr<SkottieWrapper> skottie)
    : skottie_(std::move(skottie)) {}

ClientSkottieTransferCacheEntry::~ClientSkottieTransferCacheEntry() = default;

uint32_t ClientSkottieTransferCacheEntry::Id() const {
  return skottie_->id();
}

uint32_t ClientSkottieTransferCacheEntry::SerializedSize() const {
  return skottie_->raw_data().size();
}

bool ClientSkottieTransferCacheEntry::Serialize(
    base::span<uint8_t> data) const {
  DCHECK_GE(data.size(), SerializedSize());
  memcpy(data.data(), skottie_->raw_data().data(), SerializedSize());
  return true;
}

ServiceSkottieTransferCacheEntry::ServiceSkottieTransferCacheEntry() = default;
ServiceSkottieTransferCacheEntry::~ServiceSkottieTransferCacheEntry() = default;

size_t ServiceSkottieTransferCacheEntry::CachedSize() const {
  return cached_size_;
}

bool ServiceSkottieTransferCacheEntry::Deserialize(
    GrDirectContext* context,
    skgpu::graphite::Recorder* graphite_recorder,
    base::span<const uint8_t> data) {
  skottie_ = SkottieWrapper::UnsafeCreateNonSerializable(data);
  cached_size_ = data.size();
  return skottie_->is_valid();
}

}  // namespace cc