/* * 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/graphite/DrawWriter.h" #include "src/gpu/BufferWriter.h" #include "src/gpu/graphite/DrawCommands.h" namespace skgpu::graphite { DrawWriter::DrawWriter(DrawPassCommands::List* commandList, DrawBufferManager* bufferManager) : … { … } void DrawWriter::setTemplate(BindBufferInfo vertices, BindBufferInfo indices, BindBufferInfo instances, int templateCount) { … } void DrawWriter::flush() { … } } // namespace skgpu::graphite