Searched refs:lightColor (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/skia/include/effects/
H A DSkLightingImageFilter.h49 SkColor lightColor, SkScalar surfaceScale, SkScalar kd,
52 SkColor lightColor, SkScalar surfaceScale, SkScalar kd,
56 SkColor lightColor, SkScalar surfaceScale, SkScalar kd,
59 SkColor lightColor, SkScalar surfaceScale, SkScalar ks,
62 SkColor lightColor, SkScalar surfaceScale, SkScalar ks,
66 SkColor lightColor, SkScalar surfaceScale, SkScalar ks,
/external/skia/include/effects/
H A DSkLightingImageFilter.h49 SkColor lightColor, SkScalar surfaceScale, SkScalar kd,
52 SkColor lightColor, SkScalar surfaceScale, SkScalar kd,
56 SkColor lightColor, SkScalar surfaceScale, SkScalar kd,
59 SkColor lightColor, SkScalar surfaceScale, SkScalar ks,
62 SkColor lightColor, SkScalar surfaceScale, SkScalar ks,
66 SkColor lightColor, SkScalar surfaceScale, SkScalar ks,
/external/chromium_org/third_party/angle/samples/angle/multi_texture/
H A DMultiTexture.cpp63 vec4 lightColor;
66 lightColor = texture2D(s_lightMap, v_texCoord);
67 gl_FragColor = baseColor * (lightColor + 0.25);
/external/skia/src/effects/
H A DSkLightingImageFilter.cpp62 SkPMColor light(const SkPoint3& normal, const SkPoint3& surfaceTolight, const SkPoint3& lightColor) const {
65 SkPoint3 color(lightColor * colorScale);
79 SkPMColor light(const SkPoint3& normal, const SkPoint3& surfaceTolight, const SkPoint3& lightColor) const {
86 SkPoint3 color(lightColor * colorScale);
181 *dptr++ = lightingType.light(topLeftNormal(m, surfaceScale), surfaceToLight, l->lightColor(surfaceToLight));
188 *dptr++ = lightingType.light(topNormal(m, surfaceScale), surfaceToLight, l->lightColor(surfaceToLight));
192 *dptr++ = lightingType.light(topRightNormal(m, surfaceScale), surfaceToLight, l->lightColor(surfaceToLight));
208 *dptr++ = lightingType.light(leftNormal(m, surfaceScale), surfaceToLight, l->lightColor(surfaceToLight));
215 *dptr++ = lightingType.light(interiorNormal(m, surfaceScale), surfaceToLight, l->lightColor(surfaceToLight));
219 *dptr++ = lightingType.light(rightNormal(m, surfaceScale), surfaceToLight, l->lightColor(surfaceToLigh
564 SkPoint3 lightColor(const SkPoint3&) const { return color(); } function in class:SkDistantLight
621 SkPoint3 lightColor(const SkPoint3&) const { return color(); } function in class:SkPointLight
709 SkPoint3 lightColor(const SkPoint3& surfaceToLight) const { function in class:SkSpotLight
842 CreateDistantLitDiffuse( const SkPoint3& direction, SkColor lightColor, SkScalar surfaceScale, SkScalar kd, SkImageFilter* input, const CropRect* cropRect) argument
850 CreatePointLitDiffuse( const SkPoint3& location, SkColor lightColor, SkScalar surfaceScale, SkScalar kd, SkImageFilter* input, const CropRect* cropRect) argument
858 CreateSpotLitDiffuse( const SkPoint3& location, const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle, SkColor lightColor, SkScalar surfaceScale, SkScalar kd, SkImageFilter* input, const CropRect* cropRect) argument
869 CreateDistantLitSpecular( const SkPoint3& direction, SkColor lightColor, SkScalar surfaceScale, SkScalar ks, SkScalar shininess, SkImageFilter* input, const CropRect* cropRect) argument
877 CreatePointLitSpecular( const SkPoint3& location, SkColor lightColor, SkScalar surfaceScale, SkScalar ks, SkScalar shininess, SkImageFilter* input, const CropRect* cropRect) argument
885 CreateSpotLitSpecular( const SkPoint3& location, const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle, SkColor lightColor, SkScalar surfaceScale, SkScalar ks, SkScalar shininess, SkImageFilter* input, const CropRect* cropRect) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFELighting.cpp336 Color lightColor = adaptColorToOperatingColorSpace(m_lightingColor); local
337 paintingData.colorVector = FloatPoint3D(lightColor.red(), lightColor.green(), lightColor.blue());
438 Color lightColor = adaptColorToOperatingColorSpace(m_lightingColor); local
449 return adoptRef(SkLightingImageFilter::CreateDistantLitSpecular(direction, lightColor.rgb(), m_surfaceScale, m_specularConstant, m_specularExponent, input.get(), &rect));
450 return adoptRef(SkLightingImageFilter::CreateDistantLitDiffuse(direction, lightColor.rgb(), m_surfaceScale, m_diffuseConstant, input.get(), &rect));
457 return adoptRef(SkLightingImageFilter::CreatePointLitSpecular(skPosition, lightColor.rgb(), m_surfaceScale, m_specularConstant, m_specularExponent, input.get(), &rect));
458 return adoptRef(SkLightingImageFilter::CreatePointLitDiffuse(skPosition, lightColor.rgb(), m_surfaceScale, m_diffuseConstant, input.get(), &rect));
469 return adoptRef(SkLightingImageFilter::CreateSpotLitSpecular(location, target, specularExponent, limitingConeAngle, lightColor
[all...]
/external/chromium_org/third_party/skia/src/effects/
H A DSkLightingImageFilter.cpp66 const SkPoint3& lightColor) const {
69 SkPoint3 color(lightColor * colorScale);
84 const SkPoint3& lightColor) const {
91 SkPoint3 color(lightColor * colorScale);
189 l->lightColor(surfaceToLight));
197 l->lightColor(surfaceToLight));
202 l->lightColor(surfaceToLight));
219 l->lightColor(surfaceToLight));
227 l->lightColor(surfaceToLight));
232 l->lightColor(surfaceToLigh
596 SkPoint3 lightColor(const SkPoint3&) const { return color(); } function in class:SkDistantLight
653 SkPoint3 lightColor(const SkPoint3&) const { return color(); } function in class:SkPointLight
741 SkPoint3 lightColor(const SkPoint3& surfaceToLight) const { function in class:SkSpotLight
872 CreateDistantLitDiffuse(const SkPoint3& direction, SkColor lightColor, SkScalar surfaceScale, SkScalar kd, SkImageFilter* input, const CropRect* cropRect) argument
882 CreatePointLitDiffuse(const SkPoint3& location, SkColor lightColor, SkScalar surfaceScale, SkScalar kd, SkImageFilter* input, const CropRect* cropRect) argument
892 CreateSpotLitDiffuse(const SkPoint3& location, const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle, SkColor lightColor, SkScalar surfaceScale, SkScalar kd, SkImageFilter* input, const CropRect* cropRect) argument
906 CreateDistantLitSpecular(const SkPoint3& direction, SkColor lightColor, SkScalar surfaceScale, SkScalar ks, SkScalar shine, SkImageFilter* input, const CropRect* cropRect) argument
917 CreatePointLitSpecular(const SkPoint3& location, SkColor lightColor, SkScalar surfaceScale, SkScalar ks, SkScalar shine, SkImageFilter* input, const CropRect* cropRect) argument
928 CreateSpotLitSpecular(const SkPoint3& location, const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle, SkColor lightColor, SkScalar surfaceScale, SkScalar ks, SkScalar shine, SkImageFilter* input, const CropRect* cropRect) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 440 milliseconds