chromium/third_party/skia/src/gpu/ganesh/GrMeshBuffers.h

/*
 * Copyright 2023 Google LLC
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef GrMeshBuffers_DEFINED
#define GrMeshBuffers_DEFINED

#include "include/core/SkRefCnt.h"
#include "include/gpu/ganesh/GrDirectContext.h"
#include "include/private/base/SkAssert.h"
#include "include/private/gpu/ganesh/GrTypesPriv.h"
#include "src/core/SkMeshPriv.h"
#include "src/gpu/ganesh/GrGpuBuffer.h"

#include <cstddef>

template <typename Base, GrGpuBufferType> class GrMeshBuffer final : public Base {};

namespace SkMeshPriv {
GaneshIndexBuffer;
GaneshVertexBuffer;
}  // namespace SkMeshPriv

#endif