skottie_transform_property_value.cc 536 B

12345678910111213141516171819
  1. // Copyright 2022 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. #include "cc/paint/skottie_transform_property_value.h"
  5. namespace cc {
  6. bool SkottieTransformPropertyValue::operator==(
  7. const SkottieTransformPropertyValue& other) const {
  8. return position == other.position;
  9. }
  10. bool SkottieTransformPropertyValue::operator!=(
  11. const SkottieTransformPropertyValue& other) const {
  12. return !(*this == other);
  13. }
  14. } // namespace cc