blob: 61f4c264ed82ab3296e45df0d9258028d3f2e5f4 [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/core/buffer.h"
#include "impeller/core/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