blob: 58c5a5050d66e840c91400b02d616385464f8b26 [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.
#pragma once
#include <memory>
#include "flutter/fml/macros.h"
#include "flutter/fml/mapping.h"
#include "impeller/geometry/size.h"
#include "impeller/image/decompressed_image.h"
namespace impeller {
class ImageSource;
class CompressedImage {
public:
static std::shared_ptr<CompressedImage> Create(
std::shared_ptr<const fml::Mapping> allocation);
virtual ~CompressedImage();
[[nodiscard]] virtual DecompressedImage Decode() const = 0;
bool IsValid() const;
protected:
const std::shared_ptr<const fml::Mapping> source_;
CompressedImage(std::shared_ptr<const fml::Mapping> allocation);
};
} // namespace impeller