53d863c18c
This change swaps the sense of the tonal color shadow flag, so tonal color will always be on unless explicitly disabled. Change-Id: I56ce4228022cf59b570cd7461327628cf7fe7173 Reviewed-on: https://skia-review.googlesource.com/73900 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Jim Van Verth <jvanverth@google.com>
26 lines
813 B
C
26 lines
813 B
C
/*
|
|
* Copyright 2017 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkShadowFlags_DEFINED
|
|
#define SkShadowFlags_DEFINED
|
|
|
|
// A set of flags shared between the SkAmbientShadowMaskFilter and the SkSpotShadowMaskFilter
|
|
enum SkShadowFlags {
|
|
kNone_ShadowFlag = 0x00,
|
|
/** The occluding object is not opaque. Knowing that the occluder is opaque allows
|
|
* us to cull shadow geometry behind it and improve performance. */
|
|
kTransparentOccluder_ShadowFlag = 0x01,
|
|
/** Don't try to use analytic shadows. */
|
|
kGeometricOnly_ShadowFlag = 0x02,
|
|
/** Disable use of tonal values when applying color */
|
|
kDisableTonalColor_ShadowFlag = 0x04,
|
|
/** mask for all shadow flags */
|
|
kAll_ShadowFlag = 0x07
|
|
};
|
|
|
|
#endif
|