1 /*
2  * Copyright 2016 Google Inc.
3  *
4  * Use of this source code is governed by a BSD-style license that can be
5  * found in the LICENSE file.
6  */
7 
8 #ifndef SkClipOpPriv_DEFINED
9 #define SkClipOpPriv_DEFINED
10 
11 #include "SkClipOp.h"
12 
13 const SkClipOp kDifference_SkClipOp         = SkClipOp::kDifference;
14 const SkClipOp kIntersect_SkClipOp          = SkClipOp::kIntersect;
15 
16 const SkClipOp kUnion_SkClipOp              = SkClipOp::kUnion_deprecated;
17 const SkClipOp kXOR_SkClipOp                = SkClipOp::kXOR_deprecated;
18 const SkClipOp kReverseDifference_SkClipOp  = SkClipOp::kReverseDifference_deprecated;
19 const SkClipOp kReplace_SkClipOp            = SkClipOp::kReplace_deprecated;
20 
21 #endif
22