blob: 4d304b140489f21bd60cf5885d4f610a057239e4 [file] [log] [blame]
/*
* 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 FillPathFlags_DEFINED
#define FillPathFlags_DEFINED
#include "include/private/base/SkMacros.h"
namespace skgpu::ganesh {
// We send these flags to the internal path filling Ops to control how a path gets rendered.
enum class FillPathFlags {
kNone = 0,
kStencilOnly = (1 << 0),
kWireframe = (1 << 1)
};
SK_MAKE_BITFIELD_CLASS_OPS(FillPathFlags)
} // namespace skgpu::ganesh
#endif // FillPathFlags_DEFINED