blob: 49a438c03d3ae8abaee5f82c3461bbe7bba18265 [file] [log] [blame]
// Copyright 2017 The Chromium 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 CC_PAINT_SKIA_PAINT_IMAGE_GENERATOR_H_
#define CC_PAINT_SKIA_PAINT_IMAGE_GENERATOR_H_
#include "cc/paint/paint_export.h"
#include "cc/paint/paint_image.h"
#include "third_party/skia/include/core/SkImageGenerator.h"
namespace cc {
class PaintImageGenerator;
class CC_PAINT_EXPORT SkiaPaintImageGenerator final : public SkImageGenerator {
public:
SkiaPaintImageGenerator(sk_sp<PaintImageGenerator> paint_image_generator,
size_t frame_index,
PaintImage::GeneratorClientId client_id);
SkiaPaintImageGenerator(const SkiaPaintImageGenerator&) = delete;
~SkiaPaintImageGenerator() override;
SkiaPaintImageGenerator& operator=(const SkiaPaintImageGenerator&) = delete;
sk_sp<SkData> onRefEncodedData() override;
bool onGetPixels(const SkImageInfo&,
void* pixels,
size_t row_bytes,
const Options& options) override;
bool onQueryYUVAInfo(
const SkYUVAPixmapInfo::SupportedDataTypes& supported_data_types,
SkYUVAPixmapInfo* yuva_pixmap_info) const override;
bool onGetYUVAPlanes(const SkYUVAPixmaps& planes) override;
private:
sk_sp<PaintImageGenerator> paint_image_generator_;
const size_t frame_index_;
const PaintImage::GeneratorClientId client_id_;
};
} // namespace cc
#endif // CC_PAINT_SKIA_PAINT_IMAGE_GENERATOR_H_