blob: 3b4814746bf5d5ccc1dd8560baaf015896b096ec [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 <CoreFoundation/CoreFoundation.h>
#include <CoreImage/CoreImage.h>
#include <string>
#include "flutter/fml/macros.h"
namespace impeller {
namespace testing {
/// A screenshot that was produced from `MetalScreenshotter`.
class MetalScreenshot {
public:
~MetalScreenshot();
const UInt8* GetBytes() const;
size_t GetHeight() const;
size_t GetWidth() const;
size_t GetBytesPerRow() const;
bool WriteToPNG(const std::string& path) const;
private:
friend class MetalScreenshotter;
explicit MetalScreenshot(CGImageRef cgImage);
MetalScreenshot(const MetalScreenshot&) = delete;
MetalScreenshot& operator=(const MetalScreenshot&) = delete;
CGImageRef cg_image_;
CFDataRef pixel_data_;
};
} // namespace testing
} // namespace impeller