Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(521)

Side by Side Diff: Source/platform/graphics/filters/DistantLightSource.h

Issue 181943003: Scaling and offset fix for FELighting (software and skia paths) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Changed fix to temporary light creation Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Alex Mathews <possessedpenguinbob@gmail.com> 2 * Copyright (C) 2008 Alex Mathews <possessedpenguinbob@gmail.com>
3 * Copyright (C) 2004, 2005, 2006, 2007 Nikolas Zimmermann <zimmermann@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007 Nikolas Zimmermann <zimmermann@kde.org>
4 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> 4 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org>
5 * Copyright (C) 2005 Eric Seidel <eric@webkit.org> 5 * Copyright (C) 2005 Eric Seidel <eric@webkit.org>
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 16 matching lines...) Expand all
27 27
28 namespace WebCore { 28 namespace WebCore {
29 29
30 class PLATFORM_EXPORT DistantLightSource : public LightSource { 30 class PLATFORM_EXPORT DistantLightSource : public LightSource {
31 public: 31 public:
32 static PassRefPtr<DistantLightSource> create(float azimuth, float elevation) 32 static PassRefPtr<DistantLightSource> create(float azimuth, float elevation)
33 { 33 {
34 return adoptRef(new DistantLightSource(azimuth, elevation)); 34 return adoptRef(new DistantLightSource(azimuth, elevation));
35 } 35 }
36 36
37 virtual PassRefPtr<LightSource> create(const FloatPoint3D& scale, const Floa tSize& offset) const OVERRIDE
38 {
39 return adoptRef(new DistantLightSource(m_azimuth, m_elevation));
40 }
41
37 float azimuth() const { return m_azimuth; } 42 float azimuth() const { return m_azimuth; }
38 float elevation() const { return m_elevation; } 43 float elevation() const { return m_elevation; }
39 44
40 virtual bool setAzimuth(float) OVERRIDE; 45 virtual bool setAzimuth(float) OVERRIDE;
41 virtual bool setElevation(float) OVERRIDE; 46 virtual bool setElevation(float) OVERRIDE;
42 47
43 virtual void initPaintingData(PaintingData&) OVERRIDE; 48 virtual void initPaintingData(PaintingData&) const OVERRIDE;
44 virtual void updatePaintingData(PaintingData&, int x, int y, float z) OVERRI DE; 49 virtual void updatePaintingData(PaintingData&, int x, int y, float z) const OVERRIDE;
45 50
46 virtual TextStream& externalRepresentation(TextStream&) const OVERRIDE; 51 virtual TextStream& externalRepresentation(TextStream&) const OVERRIDE;
47 52
48 private: 53 private:
49 DistantLightSource(float azimuth, float elevation) 54 DistantLightSource(float azimuth, float elevation)
50 : LightSource(LS_DISTANT) 55 : LightSource(LS_DISTANT)
51 , m_azimuth(azimuth) 56 , m_azimuth(azimuth)
52 , m_elevation(elevation) 57 , m_elevation(elevation)
53 { 58 {
54 } 59 }
55 60
56 float m_azimuth; 61 float m_azimuth;
57 float m_elevation; 62 float m_elevation;
58 }; 63 };
59 64
60 } // namespace WebCore 65 } // namespace WebCore
61 66
62 #endif // DistantLightSource_h 67 #endif // DistantLightSource_h
OLDNEW
« no previous file with comments | « Source/platform/graphics/cpu/arm/filters/FELightingNEON.h ('k') | Source/platform/graphics/filters/DistantLightSource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698