| OLD | NEW |
| 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 27 matching lines...) Expand all Loading... |
| 38 { | 38 { |
| 39 return adoptRef(new DistantLightSource(m_azimuth, m_elevation)); | 39 return adoptRef(new DistantLightSource(m_azimuth, m_elevation)); |
| 40 } | 40 } |
| 41 | 41 |
| 42 float azimuth() const { return m_azimuth; } | 42 float azimuth() const { return m_azimuth; } |
| 43 float elevation() const { return m_elevation; } | 43 float elevation() const { return m_elevation; } |
| 44 | 44 |
| 45 virtual bool setAzimuth(float) override; | 45 virtual bool setAzimuth(float) override; |
| 46 virtual bool setElevation(float) override; | 46 virtual bool setElevation(float) override; |
| 47 | 47 |
| 48 virtual void initPaintingData(PaintingData&) const override; | |
| 49 virtual void updatePaintingData(PaintingData&, int x, int y, float z) const
override; | |
| 50 | |
| 51 virtual TextStream& externalRepresentation(TextStream&) const override; | 48 virtual TextStream& externalRepresentation(TextStream&) const override; |
| 52 | 49 |
| 53 private: | 50 private: |
| 54 DistantLightSource(float azimuth, float elevation) | 51 DistantLightSource(float azimuth, float elevation) |
| 55 : LightSource(LS_DISTANT) | 52 : LightSource(LS_DISTANT) |
| 56 , m_azimuth(azimuth) | 53 , m_azimuth(azimuth) |
| 57 , m_elevation(elevation) | 54 , m_elevation(elevation) |
| 58 { | 55 { |
| 59 } | 56 } |
| 60 | 57 |
| 61 float m_azimuth; | 58 float m_azimuth; |
| 62 float m_elevation; | 59 float m_elevation; |
| 63 }; | 60 }; |
| 64 | 61 |
| 65 } // namespace blink | 62 } // namespace blink |
| 66 | 63 |
| 67 #endif // DistantLightSource_h | 64 #endif // DistantLightSource_h |
| OLD | NEW |