blob: 191918f921a65cc4f08ac684c4e9b3e6a53ae912 [file]
/*
* Copyright 2019 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkClipStackUtils_DEFINED
#define SkClipStackUtils_DEFINED
#include "include/core/SkTypes.h"
class SkClipStack;
class SkPath;
// Return the resolved clipstack as a single path.
// Note: uses SkPathOps as part of its implementation.
//
SkPath SkClipStack_AsPath(const SkClipStack&);
#endif