blob: 21695b904251b3adc2d117ba4530f88e6f9a1393 [file] [log] [blame]
/*
* 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 SkClipOpPriv_DEFINED
#define SkClipOpPriv_DEFINED
#include "SkClipOp.h"
const SkClipOp kDifference_SkClipOp = SkClipOp::kDifference;
const SkClipOp kIntersect_SkClipOp = SkClipOp::kIntersect;
const SkClipOp kUnion_SkClipOp = SkClipOp::kUnion_deprecated;
const SkClipOp kXOR_SkClipOp = SkClipOp::kXOR_deprecated;
const SkClipOp kReverseDifference_SkClipOp = SkClipOp::kReverseDifference_deprecated;
const SkClipOp kReplace_SkClipOp = SkClipOp::kReplace_deprecated;
#endif