/* * 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 #include 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> children, const SkMatrix&, GrAAType, sk_sp); GrOp::Owner Make(GrRecordingContext*, GrPaint&&, sk_sp, const GrPrimitiveType* overridePrimitiveType, const SkMatrix&, GrAAType, sk_sp); } // namespace skgpu::ganesh::DrawMeshOp #endif // DrawMeshOp_DEFINED