a0438e6604
Bug: skia:10209 Change-Id: I72639b7e768742dcdec810a5a714ce21ff0f6e0a Reviewed-on: https://skia-review.googlesource.com/c/skia/+/436565 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Michael Ludwig <michaelludwig@google.com>
20 lines
344 B
C
20 lines
344 B
C
/*
|
|
* 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
|
|
|
|
#include "include/core/SkTypes.h"
|
|
|
|
enum class SkClipOp {
|
|
kDifference = 0,
|
|
kIntersect = 1,
|
|
kMax_EnumValue = kIntersect
|
|
};
|
|
|
|
#endif
|