Home
last modified time | relevance | path

Searched refs:LightSource (Results 1 – 25 of 37) sorted by relevance

12

/external/webkit/Source/WebCore/platform/graphics/filters/
DLightSource.cpp37 bool LightSource::setAzimuth(float azimuth) in setAzimuth()
44 bool LightSource::setElevation(float elevation) in setElevation()
51 bool LightSource::setX(float x) in setX()
60 bool LightSource::setY(float y) in setY()
69 bool LightSource::setZ(float z) in setZ()
78 bool LightSource::setPointsAtX(float pointsAtX) in setPointsAtX()
85 bool LightSource::setPointsAtY(float pointsAtY) in setPointsAtY()
92 bool LightSource::setPointsAtZ(float pointsAtZ) in setPointsAtZ()
99 bool LightSource::setSpecularExponent(float specularExponent) in setSpecularExponent()
106 bool LightSource::setLimitingConeAngle(float limitingConeAngle) in setLimitingConeAngle()
DFEDiffuseLighting.h30 class LightSource; variable
35 float, float, PassRefPtr<LightSource>);
53 const LightSource* lightSource() const;
54 void setLightSource(PassRefPtr<LightSource>);
61 FEDiffuseLighting(Filter*, const Color&, float, float, float, float, PassRefPtr<LightSource>);
DFELighting.h73 …r*, LightingType, const Color&, float, float, float, float, float, float, PassRefPtr<LightSource>);
76 inline void inlineSetPixel(int offset, LightingData&, LightSource::PaintingData&,
80 void setPixel(int offset, LightingData&, LightSource::PaintingData&,
84 void drawInteriorPixels(LightingData&, LightSource::PaintingData&);
88 RefPtr<LightSource> m_lightSource;
DFESpecularLighting.h33 float, float, float, PassRefPtr<LightSource>);
54 const LightSource* lightSource() const;
55 void setLightSource(PassRefPtr<LightSource>);
62 …pecularLighting(Filter*, const Color&, float, float, float, float, float, PassRefPtr<LightSource>);
DLightSource.h42 class LightSource : public RefCounted<LightSource> {
63 LightSource(LightType type) in LightSource() function
67 virtual ~LightSource() { } in ~LightSource()
DFEDiffuseLighting.cpp34 …float diffuseConstant, float kernelUnitLengthX, float kernelUnitLengthY, PassRefPtr<LightSource> l… in FEDiffuseLighting()
41 float kernelUnitLengthY, PassRefPtr<LightSource> lightSource) in create()
115 const LightSource* FEDiffuseLighting::lightSource() const in lightSource()
120 void FEDiffuseLighting::setLightSource(PassRefPtr<LightSource> lightSource) in setLightSource()
DFESpecularLighting.cpp35 float kernelUnitLengthY, PassRefPtr<LightSource> lightSource) in FESpecularLighting()
42 float kernelUnitLengthX, float kernelUnitLengthY, PassRefPtr<LightSource> lightSource) in create()
130 const LightSource* FESpecularLighting::lightSource() const in lightSource()
135 void FESpecularLighting::setLightSource(PassRefPtr<LightSource> lightSource) in setLightSource()
DPointLightSource.h31 class PointLightSource : public LightSource {
50 : LightSource(LS_POINT) in PointLightSource()
DDistantLightSource.h31 class DistantLightSource : public LightSource {
50 : LightSource(LS_DISTANT) in DistantLightSource()
DSpotLightSource.h31 class SpotLightSource : public LightSource {
61 : LightSource(LS_SPOT) in SpotLightSource()
DFELighting.cpp45 float kernelUnitLengthX, float kernelUnitLengthY, PassRefPtr<LightSource> lightSource) in FELighting()
182 inline void FELighting::inlineSetPixel(int offset, LightingData& data, LightSource::PaintingData& p… in inlineSetPixel()
231 void FELighting::setPixel(int offset, LightingData& data, LightSource::PaintingData& paintingData, in setPixel()
239 LightSource::PaintingData paintingData; in drawLighting()
404 void FELighting::drawInteriorPixels(LightingData& data, LightSource::PaintingData& paintingData) in drawInteriorPixels()
/external/jhead/
Dmakernote.c131 case 1: ImageInfo.LightSource = 1; break; // Sunny in ProcessCanonMakerNoteDir()
132 case 2: ImageInfo.LightSource = 1; break; // Cloudy in ProcessCanonMakerNoteDir()
133 case 3: ImageInfo.LightSource = 3; break; // Thungsten in ProcessCanonMakerNoteDir()
134 case 4: ImageInfo.LightSource = 2; break; // Fourescent in ProcessCanonMakerNoteDir()
135 case 5: ImageInfo.LightSource = 4; break; // Flash in ProcessCanonMakerNoteDir()
Djhead.h103 int LightSource; member
Dexif.c897 ImageInfo.LightSource = (int)ConvertAnyFormat(ValuePtr, Format); in ProcessExifDir()
1779 switch(ImageInfo.LightSource) { in ShowImageInfo()
/external/webkit/Source/WebCore/svg/
DSVGFELightElement.h34 virtual PassRefPtr<LightSource> lightSource() const = 0;
36 static PassRefPtr<LightSource> findLightSource(const SVGElement*);
DSVGFEDiffuseLightingElement.cpp102 LightSource* lightSource = const_cast<LightSource*>(diffuseLighting->lightSource()); in setFilterEffectAttribute()
204 RefPtr<LightSource> lightSource = SVGFELightElement::findLightSource(this); in build()
DSVGFESpecularLightingElement.cpp109 LightSource* lightSource = const_cast<LightSource*>(specularLighting->lightSource()); in setFilterEffectAttribute()
215 RefPtr<LightSource> lightSource = SVGFELightElement::findLightSource(this); in build()
DSVGFEDistantLightElement.h35 virtual PassRefPtr<LightSource> lightSource() const;
DSVGFESpotLightElement.h35 virtual PassRefPtr<LightSource> lightSource() const;
DSVGFEPointLightElement.h35 virtual PassRefPtr<LightSource> lightSource() const;
DSVGFEDistantLightElement.cpp39 PassRefPtr<LightSource> SVGFEDistantLightElement::lightSource() const in lightSource()
DSVGFEPointLightElement.cpp39 PassRefPtr<LightSource> SVGFEPointLightElement::lightSource() const in lightSource()
DSVGFESpotLightElement.cpp39 PassRefPtr<LightSource> SVGFESpotLightElement::lightSource() const in lightSource()
DSVGFELightElement.cpp68 PassRefPtr<LightSource> SVGFELightElement::findLightSource(const SVGElement* svgElement) in findLightSource()
/external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/
Dexif.js182 LightSource : { property

12