chromium/third_party/skia/src/gpu/ganesh/GrEagerVertexAllocator.cpp

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

#include "src/gpu/ganesh/GrEagerVertexAllocator.h"

#include "include/private/base/SkMalloc.h"
#include "src/gpu/ganesh/GrBuffer.h"
#include "src/gpu/ganesh/GrMeshDrawTarget.h"

#include <utility>

//-------------------------------------------------------------------------------------------------
void* GrEagerDynamicVertexAllocator::lock(size_t stride, int eagerCount) {}

void GrEagerDynamicVertexAllocator::unlock(int actualCount) {}

//-------------------------------------------------------------------------------------------------
void* GrCpuVertexAllocator::lock(size_t stride, int eagerCount) {}

void GrCpuVertexAllocator::unlock(int actualCount) {}

sk_sp<GrThreadSafeCache::VertexData> GrCpuVertexAllocator::detachVertexData() {}