summaryrefslogtreecommitdiffstats
path: root/src/render/lights
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/lights')
-rw-r--r--src/render/lights/qdirectionallight.cpp4
-rw-r--r--src/render/lights/qlight.cpp6
-rw-r--r--src/render/lights/qpointlight.cpp4
-rw-r--r--src/render/lights/qspotlight.cpp4
4 files changed, 1 insertions, 17 deletions
diff --git a/src/render/lights/qdirectionallight.cpp b/src/render/lights/qdirectionallight.cpp
index 22b3421dd..b85ff5ac4 100644
--- a/src/render/lights/qdirectionallight.cpp
+++ b/src/render/lights/qdirectionallight.cpp
@@ -64,10 +64,6 @@ namespace Qt3DRender {
* \endcode
*/
-/*!
- \class Qt3DRender::QDirectionalLightPrivate
- \internal
-*/
QDirectionalLightPrivate::QDirectionalLightPrivate()
: QLightPrivate(QLight::DirectionalLight)
, m_direction(0.0f, -1.0f, 0.0f)
diff --git a/src/render/lights/qlight.cpp b/src/render/lights/qlight.cpp
index edba0b4b8..cd68d843c 100644
--- a/src/render/lights/qlight.cpp
+++ b/src/render/lights/qlight.cpp
@@ -48,16 +48,12 @@ namespace Qt3DRender
/*!
* \qmltype Light
* \inqmlmodule Qt3D.Render
- * \instantiates QLight
+ * \instantiates Qt3DRender::QLight
* \brief Encapsulate a QLight object in a Qt 3D scene.
* \since 5.6
*/
-/*!
- \class Qt3DRender::QLightPrivate
- \internal
-*/
QLightPrivate::QLightPrivate(QLight::Type type)
: m_type(type)
, m_color(QColor(255, 255, 255))
diff --git a/src/render/lights/qpointlight.cpp b/src/render/lights/qpointlight.cpp
index ced3ed681..68db07ecc 100644
--- a/src/render/lights/qpointlight.cpp
+++ b/src/render/lights/qpointlight.cpp
@@ -61,10 +61,6 @@ namespace Qt3DRender {
\endcode
*/
-/*!
- \class Qt3DRender::QPointLightPrivate
- \internal
-*/
QPointLightPrivate::QPointLightPrivate(QLight::Type type)
: QLightPrivate(type)
, m_attenuation(0.0f, 0.0f, 0.002f)
diff --git a/src/render/lights/qspotlight.cpp b/src/render/lights/qspotlight.cpp
index 12778c90b..af245d2da 100644
--- a/src/render/lights/qspotlight.cpp
+++ b/src/render/lights/qspotlight.cpp
@@ -65,10 +65,6 @@ namespace Qt3DRender {
\endcode
*/
-/*!
- \class Qt3DRender::QSpotLightPrivate
- \internal
-*/
QSpotLightPrivate::QSpotLightPrivate()
: QPointLightPrivate(QLight::SpotLight)
, m_cutOffAngle(45.0f)