blob: 551bb0b625e58800e688e0c240cd647e22ec11aa [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.
#ifndef FLUTTER_IMPELLER_CORE_BUFFER_VIEW_H_
#define FLUTTER_IMPELLER_CORE_BUFFER_VIEW_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 explicit operator bool() const { return static_cast<bool>(buffer); }
};
} // namespace impeller
#endif // FLUTTER_IMPELLER_CORE_BUFFER_VIEW_H_