HomeSort by relevance Sort by last modified time
    Searched refs:LightSource (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEDiffuseLighting.h 30 class LightSource;
35 float, float, PassRefPtr<LightSource>);
53 const LightSource* lightSource() const;
54 void setLightSource(PassRefPtr<LightSource>);
59 FEDiffuseLighting(Filter*, const Color&, float, float, float, float, PassRefPtr<LightSource>);
FESpecularLighting.h 33 float, float, float, PassRefPtr<LightSource>);
54 const LightSource* lightSource() const;
55 void setLightSource(PassRefPtr<LightSource>);
60 FESpecularLighting(Filter*, const Color&, float, float, float, float, float, PassRefPtr<LightSource>);
LightSource.h 41 class LightSource : public RefCounted<LightSource> {
62 LightSource(LightType type)
66 virtual ~LightSource() { }
FELighting.h 34 #include "core/platform/graphics/filters/LightSource.h"
84 LightSource::PaintingData paintingData;
92 FELighting(Filter*, LightingType, const Color&, float, float, float, float, float, float, PassRefPtr<LightSource>);
95 inline void inlineSetPixel(int offset, LightingData&, LightSource::PaintingData&,
99 void setPixel(int offset, LightingData&, LightSource::PaintingData&,
102 inline void platformApply(LightingData&, LightSource::PaintingData&);
104 inline void platformApplyGenericPaint(LightingData&, LightSource::PaintingData&, int startX, int startY);
105 inline void platformApplyGeneric(LightingData&, LightSource::PaintingData&);
108 inline void platformApplyNeon(LightingData&, LightSource::PaintingData&);
111 RefPtr<LightSource> m_lightSource
    [all...]
PointLightSource.h 26 #include "core/platform/graphics/filters/LightSource.h"
30 class PointLightSource : public LightSource {
49 : LightSource(LS_POINT)
DistantLightSource.h 26 #include "core/platform/graphics/filters/LightSource.h"
30 class DistantLightSource : public LightSource {
50 : LightSource(LS_DISTANT)
SpotLightSource.h 26 #include "core/platform/graphics/filters/LightSource.h"
30 class SpotLightSource : public LightSource {
61 : LightSource(LS_SPOT)
FEDiffuseLighting.cpp 27 #include "core/platform/graphics/filters/LightSource.h"
34 float diffuseConstant, float kernelUnitLengthX, float kernelUnitLengthY, PassRefPtr<LightSource> lightSource)
35 : FELighting(filter, DiffuseLighting, lightingColor, surfaceScale, diffuseConstant, 0, 0, kernelUnitLengthX, kernelUnitLengthY, lightSource)
41 float kernelUnitLengthY, PassRefPtr<LightSource> lightSource)
43 return adoptRef(new FEDiffuseLighting(filter, lightingColor, surfaceScale, diffuseConstant, kernelUnitLengthX, kernelUnitLengthY, lightSource));
115 const LightSource* FEDiffuseLighting::lightSource() const
120 void FEDiffuseLighting::setLightSource(PassRefPtr<LightSource> lightSource
    [all...]
FESpecularLighting.cpp 27 #include "core/platform/graphics/filters/LightSource.h"
35 float kernelUnitLengthY, PassRefPtr<LightSource> lightSource)
36 : FELighting(filter, SpecularLighting, lightingColor, surfaceScale, 0, specularConstant, specularExponent, kernelUnitLengthX, kernelUnitLengthY, lightSource)
42 float kernelUnitLengthX, float kernelUnitLengthY, PassRefPtr<LightSource> lightSource)
45 kernelUnitLengthX, kernelUnitLengthY, lightSource));
130 const LightSource* FESpecularLighting::lightSource() const
135 void FESpecularLighting::setLightSource(PassRefPtr<LightSource> lightSource
    [all...]
FELighting.cpp 46 float kernelUnitLengthX, float kernelUnitLengthY, PassRefPtr<LightSource> lightSource)
49 , m_lightSource(lightSource)
183 inline void FELighting::inlineSetPixel(int offset, LightingData& data, LightSource::PaintingData& paintingData,
232 void FELighting::setPixel(int offset, LightingData& data, LightSource::PaintingData& paintingData,
238 inline void FELighting::platformApplyGenericPaint(LightingData& data, LightSource::PaintingData& paintingData, int startY, int endY)
257 inline void FELighting::platformApplyGeneric(LightingData& data, LightSource::PaintingData& paintingData)
291 inline void FELighting::platformApply(LightingData& data, LightSource::PaintingData& paintingData)
303 LightSource::PaintingData paintingData;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEDistantLightElement.h 34 virtual PassRefPtr<LightSource> lightSource() const;
SVGFEPointLightElement.h 34 virtual PassRefPtr<LightSource> lightSource() const;
SVGFESpotLightElement.h 34 virtual PassRefPtr<LightSource> lightSource() const;
SVGFELightElement.h 25 #include "core/platform/graphics/filters/LightSource.h"
33 virtual PassRefPtr<LightSource> lightSource() const = 0;
35 static PassRefPtr<LightSource> findLightSource(const SVGElement*);
SVGFEDistantLightElement.cpp 41 PassRefPtr<LightSource> SVGFEDistantLightElement::lightSource() const
SVGFEPointLightElement.cpp 41 PassRefPtr<LightSource> SVGFEPointLightElement::lightSource() const
SVGFESpotLightElement.cpp 41 PassRefPtr<LightSource> SVGFESpotLightElement::lightSource() const
SVGFEDiffuseLightingElement.cpp 140 LightSource* lightSource = const_cast<LightSource*>(diffuseLighting->lightSource());
142 ASSERT(lightSource);
146 return lightSource->setAzimuth(lightElement->azimuthCurrentValue());
148 return lightSource->setElevation(lightElement->elevationCurrentValue());
150 return lightSource->setX(lightElement->xCurrentValue());
152 return lightSource->setY(lightElement->yCurrentValue());
154 return lightSource->setZ(lightElement->zCurrentValue())
    [all...]
SVGFESpecularLightingElement.cpp 151 LightSource* lightSource = const_cast<LightSource*>(specularLighting->lightSource());
153 ASSERT(lightSource);
157 return lightSource->setAzimuth(lightElement->azimuthCurrentValue());
159 return lightSource->setElevation(lightElement->elevationCurrentValue());
161 return lightSource->setX(lightElement->xCurrentValue());
163 return lightSource->setY(lightElement->yCurrentValue());
165 return lightSource->setZ(lightElement->zCurrentValue())
    [all...]
SVGFELightElement.cpp 79 PassRefPtr<LightSource> SVGFELightElement::findLightSource(const SVGElement* svgElement)
84 return lightNode->lightSource();
  /external/jhead/
makernote.c 131 case 1: ImageInfo.LightSource = 1; break; // Sunny
132 case 2: ImageInfo.LightSource = 1; break; // Cloudy
133 case 3: ImageInfo.LightSource = 3; break; // Thungsten
134 case 4: ImageInfo.LightSource = 2; break; // Fourescent
135 case 5: ImageInfo.LightSource = 4; break; // Flash
jhead.h 104 int LightSource;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/cpu/arm/filters/
FELightingNEON.h 96 inline void FELighting::platformApplyNeon(LightingData& data, LightSource::PaintingData& paintingData)
  /external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/
exif.js 57 0x9208 : "LightSource", // Kind of light source
182 LightSource : {
502 case "LightSource" :
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/
exif.js 57 0x9208 : "LightSource", // Kind of light source
182 LightSource : {
502 case "LightSource" :

Completed in 976 milliseconds

1 2