Searched defs:shadowMode (Results 1 - 4 of 4) sorted by relevance
/external/skia/include/effects/ |
H A D | SkDropShadowImageFilter.h | 25 ShadowMode shadowMode, 29 shadowMode, input, cropRect)); 38 ShadowMode shadowMode, SkImageFilter* input, const CropRect* cropRect); 23 Create(SkScalar dx, SkScalar dy, SkScalar sigmaX, SkScalar sigmaY, SkColor color, ShadowMode shadowMode, SkImageFilter* input = NULL, const CropRect* cropRect = NULL) argument
|
/external/skia/src/effects/ |
H A D | SkDropShadowImageFilter.cpp | 20 ShadowMode shadowMode, SkImageFilter* input, 28 , fShadowMode(shadowMode) 39 ShadowMode shadowMode = buffer.isVersionLT(SkReadBuffer::kDropShadowMode_Version) ? local 42 return Create(dx, dy, sigmaX, sigmaY, color, shadowMode, common.getInput(0), 18 SkDropShadowImageFilter(SkScalar dx, SkScalar dy, SkScalar sigmaX, SkScalar sigmaY, SkColor color, ShadowMode shadowMode, SkImageFilter* input, const CropRect* cropRect) argument
|
/external/jmonkeyengine/engine/src/core/com/jme3/material/ |
H A D | TechniqueDef.java | 110 private ShadowMode shadowMode = ShadowMode.Disable; field in class:TechniqueDef 168 return shadowMode; 174 * @param shadowMode the shadow mode. 178 public void setShadowMode(ShadowMode shadowMode) { argument 179 this.shadowMode = shadowMode; 374 oc.write(shadowMode, "shadowMode", ShadowMode.Disable); 391 shadowMode = ic.readEnum("shadowMode", ShadowMod [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
H A D | Spatial.java | 140 protected ShadowMode shadowMode = RenderQueue.ShadowMode.Inherit; field in class:Spatial 1064 if (shadowMode != RenderQueue.ShadowMode.Inherit) { 1065 return shadowMode; 1264 capsule.write(shadowMode, "shadow_mode", ShadowMode.Inherit); 1282 shadowMode = ic.readEnum("shadow_mode", ShadowMode.class, 1371 * @param shadowMode The local shadow mode to set. 1373 public void setShadowMode(RenderQueue.ShadowMode shadowMode) { argument 1374 this.shadowMode = shadowMode; 1392 return shadowMode; [all...] |
Completed in 1241 milliseconds