blob: 59adb649384920fea9526fccf0fef30b1e73d8ae [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FLUTTER_IMPELLER_SCENE_ANIMATION_ANIMATION_TRANSFORMS_H_
#define FLUTTER_IMPELLER_SCENE_ANIMATION_ANIMATION_TRANSFORMS_H_
#include "impeller/geometry/matrix_decomposition.h"
namespace impeller {
namespace scene {
struct AnimationTransforms {
MatrixDecomposition bind_pose;
MatrixDecomposition animated_pose;
};
} // namespace scene
} // namespace impeller
#endif // FLUTTER_IMPELLER_SCENE_ANIMATION_ANIMATION_TRANSFORMS_H_