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

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

#ifndef GrCpuBuffer_DEFINED
#define GrCpuBuffer_DEFINED

#include "include/core/SkRefCnt.h"
#include "include/private/base/SkAssert.h"
#include "src/base/SkSafeMath.h"
#include "src/gpu/ganesh/GrBuffer.h"
#include "src/gpu/ganesh/GrNonAtomicRef.h"

#include <cstddef>
#include <new>

class GrCpuBuffer final : public GrNonAtomicRef<GrCpuBuffer>, public GrBuffer {};

#endif