aboutsummaryrefslogtreecommitdiff
path: root/src/deps/skia/include/core/SkClipOp.h
blob: 3da6c61131f7b2b7c90c969bdd39f451536ed87c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * 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