| 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 21 matching lines...) Expand all Loading... |
| 32 static PassRefPtr<PointLightSource> create(const FloatPoint3D& position) | 32 static PassRefPtr<PointLightSource> create(const FloatPoint3D& position) |
| 33 { | 33 { |
| 34 return adoptRef(new PointLightSource(position)); | 34 return adoptRef(new PointLightSource(position)); |
| 35 } | 35 } |
| 36 | 36 |
| 37 const FloatPoint3D& position() const { return m_position; } | 37 const FloatPoint3D& position() const { return m_position; } |
| 38 virtual bool setX(float) OVERRIDE; | 38 virtual bool setX(float) OVERRIDE; |
| 39 virtual bool setY(float) OVERRIDE; | 39 virtual bool setY(float) OVERRIDE; |
| 40 virtual bool setZ(float) OVERRIDE; | 40 virtual bool setZ(float) OVERRIDE; |
| 41 | 41 |
| 42 virtual void initPaintingData(PaintingData&); | 42 virtual void initPaintingData(PaintingData&) OVERRIDE; |
| 43 virtual void updatePaintingData(PaintingData&, int x, int y, float z); | 43 virtual void updatePaintingData(PaintingData&, int x, int y, float z) OVERRI
DE; |
| 44 | 44 |
| 45 virtual TextStream& externalRepresentation(TextStream&) const; | 45 virtual TextStream& externalRepresentation(TextStream&) const OVERRIDE; |
| 46 | 46 |
| 47 private: | 47 private: |
| 48 PointLightSource(const FloatPoint3D& position) | 48 PointLightSource(const FloatPoint3D& position) |
| 49 : LightSource(LS_POINT) | 49 : LightSource(LS_POINT) |
| 50 , m_position(position) | 50 , m_position(position) |
| 51 { | 51 { |
| 52 } | 52 } |
| 53 | 53 |
| 54 FloatPoint3D m_position; | 54 FloatPoint3D m_position; |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 } // namespace WebCore | 57 } // namespace WebCore |
| 58 | 58 |
| 59 #endif // PointLightSource_h | 59 #endif // PointLightSource_h |
| OLD | NEW |