2016-09-20 15:42:38 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SkClipOp_DEFINED
|
|
|
|
#define SkClipOp_DEFINED
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkTypes.h"
|
2016-09-20 15:42:38 +00:00
|
|
|
|
2016-12-12 15:02:12 +00:00
|
|
|
enum class SkClipOp {
|
|
|
|
kDifference = 0,
|
|
|
|
kIntersect = 1,
|
2021-08-06 15:19:26 +00:00
|
|
|
kMax_EnumValue = kIntersect
|
2016-12-12 15:02:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|