a556684b10
Bug: skia:7263 Change-Id: I90fcc35e8d070b324287139ebecc3d15dbec0137 Reviewed-on: https://skia-review.googlesource.com/109164 Reviewed-by: Robert Phillips <robertphillips@google.com> Commit-Queue: Jim Van Verth <jvanverth@google.com>
24 lines
711 B
C
24 lines
711 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,
|
|
/** mask for all shadow flags */
|
|
kAll_ShadowFlag = 0x03
|
|
};
|
|
|
|
#endif
|