chromium/third_party/skia/include/codec/SkCodecAnimation.h

/*
 * Copyright 2016 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SkCodecAnimation_DEFINED
#define SkCodecAnimation_DEFINED

namespace SkCodecAnimation {
    /**
     *  This specifies how the next frame is based on this frame.
     *
     *  Names are based on the GIF 89a spec.
     *
     *  The numbers correspond to values in a GIF.
     */
    enum class DisposalMethod {};

    /**
     * How to blend the current frame.
     */
    enum class Blend {};

} // namespace SkCodecAnimation
#endif // SkCodecAnimation_DEFINED