blob: fe9a8747de06d82f1df86abcfacf6217eb16a31e [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 <functional>
#include <memory>
#include "flutter/fml/macros.h"
#include "impeller/renderer/context.h"
#include "impeller/renderer/render_pass.h"
#include "impeller/renderer/render_target.h"
namespace impeller {
class Surface {
public:
Surface();
explicit Surface(const RenderTarget& target_desc);
virtual ~Surface();
const ISize& GetSize() const;
bool IsValid() const;
const RenderTarget& GetTargetRenderPassDescriptor() const;
virtual bool Present() const;
private:
RenderTarget desc_;
ISize size_;
bool is_valid_ = false;
FML_DISALLOW_COPY_AND_ASSIGN(Surface);
};
} // namespace impeller