summaryrefslogtreecommitdiffstats
path: root/src/render/materialsystem
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2015-10-12 18:39:54 +0100
committerPaul Lemire <paul.lemire@kdab.com>2015-10-13 13:19:47 +0000
commit0bfd20ad3b8eb3edec8d6317af9eb5504f8c0871 (patch)
tree04002f83b72636cbe93c0bbb7356789651141afc /src/render/materialsystem
parentba9218c4fa2ee88e8ded73cefa4b4b32a4822189 (diff)
Add "We mean it" warnings to private headers
Change-Id: Ic4a69123255c33990765ea3601e01914c2d8cb70 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/render/materialsystem')
-rw-r--r--src/render/materialsystem/annotation_p.h11
-rw-r--r--src/render/materialsystem/effect_p.h11
-rw-r--r--src/render/materialsystem/material_p.h11
-rw-r--r--src/render/materialsystem/parameter_p.h11
-rw-r--r--src/render/materialsystem/parametermapping_p.h11
-rw-r--r--src/render/materialsystem/qannotation_p.h11
-rw-r--r--src/render/materialsystem/qeffect_p.h11
-rw-r--r--src/render/materialsystem/qmaterial_p.h11
-rw-r--r--src/render/materialsystem/qparameter_p.h11
-rw-r--r--src/render/materialsystem/qparametermapping_p.h11
-rw-r--r--src/render/materialsystem/qrenderpass_p.h11
-rw-r--r--src/render/materialsystem/qshaderdata_p.h11
-rw-r--r--src/render/materialsystem/qshaderprogram_p.h11
-rw-r--r--src/render/materialsystem/qtechnique_p.h11
-rw-r--r--src/render/materialsystem/renderpass_p.h11
-rw-r--r--src/render/materialsystem/shader_p.h11
-rw-r--r--src/render/materialsystem/shaderdata_p.h11
-rw-r--r--src/render/materialsystem/technique_p.h11
18 files changed, 198 insertions, 0 deletions
diff --git a/src/render/materialsystem/annotation_p.h b/src/render/materialsystem/annotation_p.h
index 37c320abf..b864d02d5 100644
--- a/src/render/materialsystem/annotation_p.h
+++ b/src/render/materialsystem/annotation_p.h
@@ -37,6 +37,17 @@
#ifndef QT3DRENDER_RENDER_RENDERANNOTATION_P_H
#define QT3DRENDER_RENDER_RENDERANNOTATION_P_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include <Qt3DRenderer/qannotation.h>
#include <Qt3DCore/qbackendnode.h>
diff --git a/src/render/materialsystem/effect_p.h b/src/render/materialsystem/effect_p.h
index 03e9f2d78..841f2996a 100644
--- a/src/render/materialsystem/effect_p.h
+++ b/src/render/materialsystem/effect_p.h
@@ -37,6 +37,17 @@
#ifndef QT3DRENDER_RENDER_EFFECT_H
#define QT3DRENDER_RENDER_EFFECT_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include <Qt3DRenderer/qt3drenderer_global.h>
#include <Qt3DRenderer/private/parameterpack_p.h>
#include <Qt3DCore/qbackendnode.h>
diff --git a/src/render/materialsystem/material_p.h b/src/render/materialsystem/material_p.h
index f1f5c6b38..06cd4f285 100644
--- a/src/render/materialsystem/material_p.h
+++ b/src/render/materialsystem/material_p.h
@@ -37,6 +37,17 @@
#ifndef QT3DRENDER_RENDER_MATERIAL_H
#define QT3DRENDER_RENDER_MATERIAL_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include <QVariant>
#include <Qt3DRenderer/private/quniformvalue_p.h>
diff --git a/src/render/materialsystem/parameter_p.h b/src/render/materialsystem/parameter_p.h
index 4ea1cea37..f8728c04b 100644
--- a/src/render/materialsystem/parameter_p.h
+++ b/src/render/materialsystem/parameter_p.h
@@ -37,6 +37,17 @@
#ifndef QT3DRENDER_RENDER_PARAMETER_P_H
#define QT3DRENDER_RENDER_PARAMETER_P_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include <Qt3DCore/qbackendnode.h>
#include <QVariant>
diff --git a/src/render/materialsystem/parametermapping_p.h b/src/render/materialsystem/parametermapping_p.h
index ead8baf9a..21e9fb7ec 100644
--- a/src/render/materialsystem/parametermapping_p.h
+++ b/src/render/materialsystem/parametermapping_p.h
@@ -37,6 +37,17 @@
#ifndef QT3DRENDER_RENDER_PARAMETERMAPPING_P_H
#define QT3DRENDER_RENDER_PARAMETERMAPPING_P_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include <Qt3DRenderer/qparametermapping.h>
QT_BEGIN_NAMESPACE
diff --git a/src/render/materialsystem/qannotation_p.h b/src/render/materialsystem/qannotation_p.h
index e61ee0c35..0763e59a4 100644
--- a/src/render/materialsystem/qannotation_p.h
+++ b/src/render/materialsystem/qannotation_p.h
@@ -37,6 +37,17 @@
#ifndef QT3DRENDER_QANNOTATION_P_H
#define QT3DRENDER_QANNOTATION_P_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include <Qt3DCore/private/qnode_p.h>
#include <Qt3DRenderer/qannotation.h>
diff --git a/src/render/materialsystem/qeffect_p.h b/src/render/materialsystem/qeffect_p.h
index 7b9ca5b99..abb81994c 100644
--- a/src/render/materialsystem/qeffect_p.h
+++ b/src/render/materialsystem/qeffect_p.h
@@ -37,6 +37,17 @@
#ifndef QT3DRENDER_QEFFECT_P_H
#define QT3DRENDER_QEFFECT_P_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include <private/qnode_p.h>
#include <Qt3DRenderer/qt3drenderer_global.h>
diff --git a/src/render/materialsystem/qmaterial_p.h b/src/render/materialsystem/qmaterial_p.h
index 1ef84e05d..9be59c488 100644
--- a/src/render/materialsystem/qmaterial_p.h
+++ b/src/render/materialsystem/qmaterial_p.h
@@ -37,6 +37,17 @@
#ifndef QT3DRENDER_QMATERIAL_P_H
#define QT3DRENDER_QMATERIAL_P_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include <private/qcomponent_p.h>
#include <Qt3DRenderer/qt3drenderer_global.h>
diff --git a/src/render/materialsystem/qparameter_p.h b/src/render/materialsystem/qparameter_p.h
index 0d3603d66..40143edc8 100644
--- a/src/render/materialsystem/qparameter_p.h
+++ b/src/render/materialsystem/qparameter_p.h
@@ -37,6 +37,17 @@
#ifndef QT3DRENDER_QPARAMETER_P_H
#define QT3DRENDER_QPARAMETER_P_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include <private/qnode_p.h>
#include <private/qt3drenderer_global_p.h>
diff --git a/src/render/materialsystem/qparametermapping_p.h b/src/render/materialsystem/qparametermapping_p.h
index 0fe32cb0f..9539ba0fc 100644
--- a/src/render/materialsystem/qparametermapping_p.h
+++ b/src/render/materialsystem/qparametermapping_p.h
@@ -37,6 +37,17 @@
#ifndef QT3DRENDER_QPARAMETERMAPPING_P_H
#define QT3DRENDER_QPARAMETERMAPPING_P_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include <private/qnode_p.h>
#include <Qt3DRenderer/QParameterMapping>
diff --git a/src/render/materialsystem/qrenderpass_p.h b/src/render/materialsystem/qrenderpass_p.h
index ace1a54b1..9be787a62 100644
--- a/src/render/materialsystem/qrenderpass_p.h
+++ b/src/render/materialsystem/qrenderpass_p.h
@@ -38,6 +38,17 @@
#ifndef QT3DRENDER_QRENDERPASS_P_H
#define QT3DRENDER_QRENDERPASS_P_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include <private/qnode_p.h>
#include <Qt3DRenderer/qrenderpass.h>
#include <Qt3DRenderer/qt3drenderer_global.h>
diff --git a/src/render/materialsystem/qshaderdata_p.h b/src/render/materialsystem/qshaderdata_p.h
index eaf6847f7..bb7c677d1 100644
--- a/src/render/materialsystem/qshaderdata_p.h
+++ b/src/render/materialsystem/qshaderdata_p.h
@@ -37,6 +37,17 @@
#ifndef QT3DRENDER_QSHADERDATA_P_H
#define QT3DRENDER_QSHADERDATA_P_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include <private/qcomponent_p.h>
#include <Qt3DRenderer/qshaderdata.h>
#include <Qt3DRenderer/private/qt3drenderer_global_p.h>
diff --git a/src/render/materialsystem/qshaderprogram_p.h b/src/render/materialsystem/qshaderprogram_p.h
index 2fd50f3b0..00936f0f2 100644
--- a/src/render/materialsystem/qshaderprogram_p.h
+++ b/src/render/materialsystem/qshaderprogram_p.h
@@ -37,6 +37,17 @@
#ifndef QT3DRENDER_QSHADERPROGRAM_P_H
#define QT3DRENDER_QSHADERPROGRAM_P_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include <private/qnode_p.h>
QT_BEGIN_NAMESPACE
diff --git a/src/render/materialsystem/qtechnique_p.h b/src/render/materialsystem/qtechnique_p.h
index 87fa18647..794ce76df 100644
--- a/src/render/materialsystem/qtechnique_p.h
+++ b/src/render/materialsystem/qtechnique_p.h
@@ -37,6 +37,17 @@
#ifndef QT3DRENDER_QTECHNIQUE_P_H
#define QT3DRENDER_QTECHNIQUE_P_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include <private/qnode_p.h>
#include <Qt3DRenderer/qopenglfilter.h>
#include <Qt3DRenderer/qt3drenderer_global.h>
diff --git a/src/render/materialsystem/renderpass_p.h b/src/render/materialsystem/renderpass_p.h
index ee9050055..70f3fdf25 100644
--- a/src/render/materialsystem/renderpass_p.h
+++ b/src/render/materialsystem/renderpass_p.h
@@ -38,6 +38,17 @@
#ifndef QT3DRENDER_RENDER_RENDERPASS_H
#define QT3DRENDER_RENDER_RENDERPASS_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include <Qt3DRenderer/qt3drenderer_global.h>
#include <Qt3DRenderer/private/parametermapping_p.h>
#include <Qt3DRenderer/private/parameterpack_p.h>
diff --git a/src/render/materialsystem/shader_p.h b/src/render/materialsystem/shader_p.h
index 7ff0cedea..fccef6ccd 100644
--- a/src/render/materialsystem/shader_p.h
+++ b/src/render/materialsystem/shader_p.h
@@ -37,6 +37,17 @@
#ifndef QT3DRENDER_RENDER_SHADER_H
#define QT3DRENDER_RENDER_SHADER_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include <QVector>
#include <Qt3DRenderer/private/quniformvalue_p.h>
#include <Qt3DRenderer/private/shadervariables_p.h>
diff --git a/src/render/materialsystem/shaderdata_p.h b/src/render/materialsystem/shaderdata_p.h
index d09e5bac8..ebc6cec4b 100644
--- a/src/render/materialsystem/shaderdata_p.h
+++ b/src/render/materialsystem/shaderdata_p.h
@@ -37,6 +37,17 @@
#ifndef QT3DRENDER_RENDER_SHADERDATA_P_H
#define QT3DRENDER_RENDER_SHADERDATA_P_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include <Qt3DCore/qbackendnode.h>
#include <private/shadervariables_p.h>
#include <Qt3DRenderer/qshaderdata.h>
diff --git a/src/render/materialsystem/technique_p.h b/src/render/materialsystem/technique_p.h
index dbebe7fc9..d4c8303ab 100644
--- a/src/render/materialsystem/technique_p.h
+++ b/src/render/materialsystem/technique_p.h
@@ -38,6 +38,17 @@
#ifndef QT3DRENDER_RENDER_TECHNIQUE_H
#define QT3DRENDER_RENDER_TECHNIQUE_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include <QVector>
#include <QStringList>
#include <Qt3DRenderer/private/parameterpack_p.h>