/* * Copyright 2023 Google LLC * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "src/core/SkMipmapBuilder.h" #include "include/core/SkImage.h" #include "include/core/SkPixmap.h" #include "include/core/SkTypes.h" #include "src/core/SkMipmap.h" struct SkImageInfo; SkMipmapBuilder::SkMipmapBuilder(const SkImageInfo& info) { … } SkMipmapBuilder::~SkMipmapBuilder() { … } int SkMipmapBuilder::countLevels() const { … } SkPixmap SkMipmapBuilder::level(int index) const { … } sk_sp<SkImage> SkMipmapBuilder::attachTo(const sk_sp<const SkImage>& src) { … }