aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar vjiaoblack <vjiaoblack@google.com>2016-08-26 08:49:46 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-08-26 08:49:46 -0700
commit56f33ea2acb39ebb041340a8ab7564facb95afce (patch)
tree0a50af0bc85cd2cd795498b71a5a7dddd1ad6ddd /include
parent6a3976114d8a6aaa564c3c7571cfe7d1727a3a6e (diff)
Added distance attenuation and diffuse shading to PointLights
Diffstat (limited to 'include')
-rw-r--r--include/core/SkLights.h42
1 files changed, 28 insertions, 14 deletions
diff --git a/include/core/SkLights.h b/include/core/SkLights.h
index 329e5d387d..d8ec87d532 100644
--- a/include/core/SkLights.h
+++ b/include/core/SkLights.h
@@ -30,14 +30,16 @@ public:
Light(const Light& other)
: fType(other.fType)
, fColor(other.fColor)
- , fDirection(other.fDirection)
+ , fDirOrPos(other.fDirOrPos)
+ , fIntensity(other.fIntensity)
, fShadowMap(other.fShadowMap) {
}
Light(Light&& other)
: fType(other.fType)
, fColor(other.fColor)
- , fDirection(other.fDirection)
+ , fDirOrPos(other.fDirOrPos)
+ , fIntensity(other.fIntensity)
, fShadowMap(std::move(other.fShadowMap)) {
}
@@ -47,25 +49,29 @@ public:
static Light MakeDirectional(const SkColor3f& color, const SkVector3& dir) {
Light light(kDirectional_LightType, color, dir);
- if (!light.fDirection.normalize()) {
- light.fDirection.set(0.0f, 0.0f, 1.0f);
+ if (!light.fDirOrPos.normalize()) {
+ light.fDirOrPos.set(0.0f, 0.0f, 1.0f);
}
return light;
}
- static Light MakePoint(const SkColor3f& color, const SkPoint3& pos) {
- return Light(kPoint_LightType, color, pos);
+ static Light MakePoint(const SkColor3f& color, const SkPoint3& pos, SkScalar intensity) {
+ return Light(kPoint_LightType, color, pos, intensity);
}
LightType type() const { return fType; }
const SkColor3f& color() const { return fColor; }
const SkVector3& dir() const {
SkASSERT(kDirectional_LightType == fType);
- return fDirection;
+ return fDirOrPos;
}
const SkPoint3& pos() const {
SkASSERT(kPoint_LightType == fType);
- return fDirection;
+ return fDirOrPos;
+ }
+ SkScalar intensity() const {
+ SkASSERT(kPoint_LightType == fType);
+ return fIntensity;
}
void setShadowMap(sk_sp<SkImage> shadowMap) {
@@ -83,7 +89,8 @@ public:
fColor = b.fColor;
fType = b.fType;
- fDirection = b.fDirection;
+ fDirOrPos = b.fDirOrPos;
+ fIntensity = b.fIntensity;
fShadowMap = b.fShadowMap;
return *this;
}
@@ -95,8 +102,9 @@ public:
return (fColor == b.fColor) &&
(fType == b.fType) &&
- (fDirection == b.fDirection) &&
- (fShadowMap == b.fShadowMap);
+ (fDirOrPos == b.fDirOrPos) &&
+ (fShadowMap == b.fShadowMap) &&
+ (fIntensity == b.fIntensity);
}
bool operator!= (const Light& b) { return !(this->operator==(b)); }
@@ -104,16 +112,22 @@ public:
private:
LightType fType;
SkColor3f fColor; // linear (unpremul) color. Range is 0..1 in each channel.
- SkVector3 fDirection; // For directional lights, holds the direction towards the
+
+ SkVector3 fDirOrPos; // For directional lights, holds the direction towards the
// light (+Z is out of the screen).
// If degenerate, it will be replaced with (0, 0, 1).
// For point lights, holds location of point light
+
+ SkScalar fIntensity; // For point lights, dictates the light intensity.
+ // Simply a multiplier to the final light output value.
sk_sp<SkImage> fShadowMap;
- Light(LightType type, const SkColor3f& color, const SkVector3& dir) {
+ Light(LightType type, const SkColor3f& color,
+ const SkVector3& dir, SkScalar intensity = 0.0f) {
fType = type;
fColor = color;
- fDirection = dir;
+ fDirOrPos = dir;
+ fIntensity = intensity;
}
};