/external/skia/include/effects/ |
SkLightingImageFilter.h | 18 class SK_API SkLightingImageFilter : public SkImageFilter { 40 ~SkLightingImageFilter() override; 45 SkLightingImageFilter(sk_sp<SkImageFilterLight> light,
|
/external/skqp/include/effects/ |
SkLightingImageFilter.h | 18 class SK_API SkLightingImageFilter : public SkImageFilter { 40 ~SkLightingImageFilter() override; 45 SkLightingImageFilter(sk_sp<SkImageFilterLight> light,
|
/external/skia/bench/ |
LightingBench.cpp | 9 #include "SkLightingImageFilter.h" 108 draw(loops, canvas, SkLightingImageFilter::MakePointLitDiffuse(GetPointLocation(), 129 draw(loops, canvas, SkLightingImageFilter::MakeDistantLitDiffuse(GetDistantDirection(), 150 draw(loops, canvas, SkLightingImageFilter::MakeSpotLitDiffuse(GetSpotLocation(), 174 draw(loops, canvas, SkLightingImageFilter::MakePointLitSpecular(GetPointLocation(), 196 draw(loops, canvas, SkLightingImageFilter::MakeDistantLitSpecular(GetDistantDirection(), 218 draw(loops, canvas, SkLightingImageFilter::MakeSpotLitSpecular(GetSpotLocation(),
|
/external/skia/gm/ |
lighting.cpp | 11 #include "SkLightingImageFilter.h" 96 paint.setImageFilter(SkLightingImageFilter::MakePointLitDiffuse(pointLocation, 104 paint.setImageFilter(SkLightingImageFilter::MakeDistantLitDiffuse(distantDirection, 112 paint.setImageFilter(SkLightingImageFilter::MakeSpotLitDiffuse(spotLocation, 125 paint.setImageFilter(SkLightingImageFilter::MakePointLitSpecular(pointLocation, 134 paint.setImageFilter(SkLightingImageFilter::MakeDistantLitSpecular(distantDirection, 143 paint.setImageFilter(SkLightingImageFilter::MakeSpotLitSpecular(spotLocation,
|
imagefiltersscaled.cpp | 15 #include "SkLightingImageFilter.h" 111 SkLightingImageFilter::MakePointLitDiffuse(pointLocation, white, surfaceScale, kd, 113 SkLightingImageFilter::MakeSpotLitDiffuse(spotLocation, spotTarget, spotExponent,
|
imagefiltersclipped.cpp | 15 #include "SkLightingImageFilter.h" 112 SkLightingImageFilter::MakePointLitDiffuse(pointLocation, SK_ColorWHITE, SK_Scalar1,
|
imagefilterscropexpand.cpp | 23 #include "SkLightingImageFilter.h" 123 SkLightingImageFilter::MakePointLitDiffuse(pointLocation,
|
/external/skqp/bench/ |
LightingBench.cpp | 9 #include "SkLightingImageFilter.h" 108 draw(loops, canvas, SkLightingImageFilter::MakePointLitDiffuse(GetPointLocation(), 129 draw(loops, canvas, SkLightingImageFilter::MakeDistantLitDiffuse(GetDistantDirection(), 150 draw(loops, canvas, SkLightingImageFilter::MakeSpotLitDiffuse(GetSpotLocation(), 174 draw(loops, canvas, SkLightingImageFilter::MakePointLitSpecular(GetPointLocation(), 196 draw(loops, canvas, SkLightingImageFilter::MakeDistantLitSpecular(GetDistantDirection(), 218 draw(loops, canvas, SkLightingImageFilter::MakeSpotLitSpecular(GetSpotLocation(),
|
/external/skqp/gm/ |
lighting.cpp | 11 #include "SkLightingImageFilter.h" 96 paint.setImageFilter(SkLightingImageFilter::MakePointLitDiffuse(pointLocation, 104 paint.setImageFilter(SkLightingImageFilter::MakeDistantLitDiffuse(distantDirection, 112 paint.setImageFilter(SkLightingImageFilter::MakeSpotLitDiffuse(spotLocation, 125 paint.setImageFilter(SkLightingImageFilter::MakePointLitSpecular(pointLocation, 134 paint.setImageFilter(SkLightingImageFilter::MakeDistantLitSpecular(distantDirection, 143 paint.setImageFilter(SkLightingImageFilter::MakeSpotLitSpecular(spotLocation,
|
imagefiltersscaled.cpp | 15 #include "SkLightingImageFilter.h" 111 SkLightingImageFilter::MakePointLitDiffuse(pointLocation, white, surfaceScale, kd, 113 SkLightingImageFilter::MakeSpotLitDiffuse(spotLocation, spotTarget, spotExponent,
|
imagefiltersclipped.cpp | 15 #include "SkLightingImageFilter.h" 112 SkLightingImageFilter::MakePointLitDiffuse(pointLocation, SK_ColorWHITE, SK_Scalar1,
|
imagefilterscropexpand.cpp | 23 #include "SkLightingImageFilter.h" 123 SkLightingImageFilter::MakePointLitDiffuse(pointLocation,
|
/external/skia/src/ports/ |
SkGlobalInitialization_default.cpp | 26 #include "SkLightingImageFilter.h" 113 SkLightingImageFilter::InitializeFlattenables();
|
/external/skqp/src/ports/ |
SkGlobalInitialization_default.cpp | 26 #include "SkLightingImageFilter.h" 113 SkLightingImageFilter::InitializeFlattenables();
|
/external/skia/src/effects/ |
SkLightingImageFilter.cpp | 8 #include "SkLightingImageFilter.h" 402 class SkLightingImageFilterInternal : public SkLightingImageFilter { 434 typedef SkLightingImageFilter INHERITED; 553 friend class SkLightingImageFilter; 593 friend class SkLightingImageFilter; [all...] |
/external/skqp/src/effects/ |
SkLightingImageFilter.cpp | 8 #include "SkLightingImageFilter.h" 402 class SkLightingImageFilterInternal : public SkLightingImageFilter { 434 typedef SkLightingImageFilter INHERITED; 553 friend class SkLightingImageFilter; 593 friend class SkLightingImageFilter; [all...] |
/external/skia/samplecode/ |
SampleFilterFuzz.cpp | 26 #include "SkLightingImageFilter.h" 605 ? SkLightingImageFilter::MakeDistantLitDiffuse(make_point(), make_color(), 608 : SkLightingImageFilter::MakeDistantLitSpecular(make_point(), make_color(), 615 ? SkLightingImageFilter::MakePointLitDiffuse(make_point(), make_color(), 618 : SkLightingImageFilter::MakePointLitSpecular(make_point(), make_color(), 625 ? SkLightingImageFilter::MakeSpotLitDiffuse(SkPoint3::Make(0, 0, 0), 630 : SkLightingImageFilter::MakeSpotLitSpecular(SkPoint3::Make(0, 0, 0),
|
/external/skqp/samplecode/ |
SampleFilterFuzz.cpp | 26 #include "SkLightingImageFilter.h" 605 ? SkLightingImageFilter::MakeDistantLitDiffuse(make_point(), make_color(), 608 : SkLightingImageFilter::MakeDistantLitSpecular(make_point(), make_color(), 615 ? SkLightingImageFilter::MakePointLitDiffuse(make_point(), make_color(), 618 : SkLightingImageFilter::MakePointLitSpecular(make_point(), make_color(), 625 ? SkLightingImageFilter::MakeSpotLitDiffuse(SkPoint3::Make(0, 0, 0), 630 : SkLightingImageFilter::MakeSpotLitSpecular(SkPoint3::Make(0, 0, 0),
|
/external/skia/tests/ |
QuickRejectTest.cpp | 13 #include "SkLightingImageFilter.h" 168 sk_sp<SkImageFilter> filter = SkLightingImageFilter::MakeDistantLitDiffuse(
|
ImageFilterTest.cpp | 22 #include "SkLightingImageFilter.h" 182 SkLightingImageFilter::MakePointLitDiffuse(location, SK_ColorGREEN, 0, 0, 185 SkLightingImageFilter::MakePointLitSpecular(location, SK_ColorGREEN, 0, 0, 0, 541 paint.setImageFilter(SkLightingImageFilter::MakeSpotLitSpecular( [all...] |
/external/skqp/tests/ |
QuickRejectTest.cpp | 13 #include "SkLightingImageFilter.h" 168 sk_sp<SkImageFilter> filter = SkLightingImageFilter::MakeDistantLitDiffuse(
|
ImageFilterTest.cpp | 22 #include "SkLightingImageFilter.h" 182 SkLightingImageFilter::MakePointLitDiffuse(location, SK_ColorGREEN, 0, 0, 185 SkLightingImageFilter::MakePointLitSpecular(location, SK_ColorGREEN, 0, 0, 0, 541 paint.setImageFilter(SkLightingImageFilter::MakeSpotLitSpecular( [all...] |
/external/skia/fuzz/ |
FuzzCanvas.cpp | 47 #include "SkLightingImageFilter.h" 573 return SkLightingImageFilter::MakeDistantLitDiffuse(p, lightColor, surfaceScale, k, 579 return SkLightingImageFilter::MakePointLitDiffuse(p, lightColor, surfaceScale, k, 585 return SkLightingImageFilter::MakeSpotLitDiffuse( 591 return SkLightingImageFilter::MakeDistantLitSpecular(p, lightColor, surfaceScale, k, 597 return SkLightingImageFilter::MakePointLitSpecular(p, lightColor, surfaceScale, k, 604 return SkLightingImageFilter::MakeSpotLitSpecular( [all...] |
/external/skqp/fuzz/ |
FuzzCanvas.cpp | 47 #include "SkLightingImageFilter.h" 569 return SkLightingImageFilter::MakeDistantLitDiffuse(p, lightColor, surfaceScale, k, 575 return SkLightingImageFilter::MakePointLitDiffuse(p, lightColor, surfaceScale, k, 581 return SkLightingImageFilter::MakeSpotLitDiffuse( 587 return SkLightingImageFilter::MakeDistantLitSpecular(p, lightColor, surfaceScale, k, 593 return SkLightingImageFilter::MakePointLitSpecular(p, lightColor, surfaceScale, k, 600 return SkLightingImageFilter::MakeSpotLitSpecular( [all...] |