blob: 21a04655d645a9c701880c7f17b9baa544049f1d [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 "flutter/fml/macros.h"
#include "impeller/renderer/buffer.h"
#include "impeller/renderer/range.h"
namespace impeller {
struct BufferView {
std::shared_ptr<const Buffer> buffer;
uint8_t* contents;
Range range;
constexpr operator bool() const { return static_cast<bool>(buffer); }
};
} // namespace impeller