| 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 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 namespace blink { | 28 namespace blink { |
| 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 | 37 virtual PassRefPtr<LightSource> create(const FloatPoint3D& scale, const Floa
tSize& offset) const override |
| 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; | 48 virtual void initPaintingData(PaintingData&) const override; |
| 49 virtual void updatePaintingData(PaintingData&, int x, int y, float z) const
OVERRIDE; | 49 virtual void updatePaintingData(PaintingData&, int x, int y, float z) const
override; |
| 50 | 50 |
| 51 virtual TextStream& externalRepresentation(TextStream&) const OVERRIDE; | 51 virtual TextStream& externalRepresentation(TextStream&) const override; |
| 52 | 52 |
| 53 private: | 53 private: |
| 54 DistantLightSource(float azimuth, float elevation) | 54 DistantLightSource(float azimuth, float elevation) |
| 55 : LightSource(LS_DISTANT) | 55 : LightSource(LS_DISTANT) |
| 56 , m_azimuth(azimuth) | 56 , m_azimuth(azimuth) |
| 57 , m_elevation(elevation) | 57 , m_elevation(elevation) |
| 58 { | 58 { |
| 59 } | 59 } |
| 60 | 60 |
| 61 float m_azimuth; | 61 float m_azimuth; |
| 62 float m_elevation; | 62 float m_elevation; |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 } // namespace blink | 65 } // namespace blink |
| 66 | 66 |
| 67 #endif // DistantLightSource_h | 67 #endif // DistantLightSource_h |
| OLD | NEW |