aboutsummaryrefslogtreecommitdiffhomepage
path: root/samplecode/SampleLighting.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'samplecode/SampleLighting.cpp')
-rwxr-xr-xsamplecode/SampleLighting.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/samplecode/SampleLighting.cpp b/samplecode/SampleLighting.cpp
index 2218f31022..bab2b5df92 100755
--- a/samplecode/SampleLighting.cpp
+++ b/samplecode/SampleLighting.cpp
@@ -22,7 +22,7 @@ static sk_sp<SkLights> create_lights(SkScalar angle, SkScalar blue) {
SkLights::Builder builder;
builder.add(SkLights::Light::MakeDirectional(SkColor3f::Make(1.0f, 1.0f, blue), dir));
- builder.setAmbientLightColor(SkColor3f::Make(0.1f, 0.1f, 0.1f));
+ builder.add(SkLights::Light::MakeAmbient(SkColor3f::Make(0.1f, 0.1f, 0.1f)));
return builder.finish();
}