OLD | NEW |
(Empty) | |
| 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 SkClipOp_DEFINED |
| 9 #define SkClipOp_DEFINED |
| 10 |
| 11 #include "SkTypes.h" |
| 12 |
| 13 // these kept in SkRegion::Op order for now ... |
| 14 enum SkClipOp { |
| 15 kDifference_SkClipOp = 0, |
| 16 kIntersect_SkClipOp = 1, |
| 17 |
| 18 // Goal: remove these, since they can grow the current clip |
| 19 |
| 20 kUnion_SkClipOp = 2, |
| 21 kXOR_SkClipOp = 3, |
| 22 kReverseDifference_SkClipOp = 4, |
| 23 kReplace_SkClipOp = 5, |
| 24 }; |
| 25 |
| 26 #endif |
OLD | NEW |