chromium/third_party/skia/src/gpu/ganesh/ops/DrawMeshOp.h

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

#include "include/core/SkRefCnt.h"
#include "include/private/base/SkTArray.h"
#include "src/gpu/ganesh/ops/GrOp.h"

#include <cstdint>
#include <memory>

class GrColorSpaceXform;
class GrFragmentProcessor;
class GrPaint;
class GrRecordingContext;
class SkMatrix;
class SkMesh;
class SkVertices;
enum class GrAAType : unsigned int;
enum class GrPrimitiveType : uint8_t;

namespace skgpu::ganesh::DrawMeshOp {
GrOp::Owner Make(GrRecordingContext*,
                 GrPaint&&,
                 const SkMesh&,
                 skia_private::TArray<std::unique_ptr<GrFragmentProcessor>> children,
                 const SkMatrix&,
                 GrAAType,
                 sk_sp<GrColorSpaceXform>);

GrOp::Owner Make(GrRecordingContext*,
                 GrPaint&&,
                 sk_sp<SkVertices>,
                 const GrPrimitiveType* overridePrimitiveType,
                 const SkMatrix&,
                 GrAAType,
                 sk_sp<GrColorSpaceXform>);
}  // namespace skgpu::ganesh::DrawMeshOp

#endif  // DrawMeshOp_DEFINED