/* * Copyright 2021 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "src/gpu/graphite/Buffer.h" #include "src/gpu/graphite/Caps.h" #include "src/gpu/graphite/SharedContext.h" namespace skgpu::graphite { void* Buffer::map() { … } void Buffer::asyncMap(GpuFinishedProc proc, GpuFinishedContext ctx) { … } void Buffer::unmap() { … } bool Buffer::isUnmappable() const { … } void Buffer::onAsyncMap(skgpu::graphite::GpuFinishedProc, skgpu::graphite::GpuFinishedContext) { … } } // namespace skgpu::graphite