chromium/third_party/skia/src/gpu/ganesh/gl/GrGLBuffer.h

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

#ifndef GrGLBuffer_DEFINED
#define GrGLBuffer_DEFINED

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

#include <cstddef>
#include <string_view>

class GrGLCaps;
class GrGLGpu;
class SkString;
class SkTraceMemoryDump;

class GrGLBuffer : public GrGpuBuffer {};

#endif