summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/deferred-renderer-qml/GBuffer.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qt3d/deferred-renderer-qml/GBuffer.qml')
-rw-r--r--examples/qt3d/deferred-renderer-qml/GBuffer.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/qt3d/deferred-renderer-qml/GBuffer.qml b/examples/qt3d/deferred-renderer-qml/GBuffer.qml
index e7c5fe82c..3104307a4 100644
--- a/examples/qt3d/deferred-renderer-qml/GBuffer.qml
+++ b/examples/qt3d/deferred-renderer-qml/GBuffer.qml
@@ -61,7 +61,7 @@ RenderTarget {
attachments : [
RenderAttachment {
- name : "color"
+ objectName : "color"
type : RenderAttachment.ColorAttachment0
texture : Texture2D {
id : colorAttachment
@@ -78,7 +78,7 @@ RenderTarget {
}
},
RenderAttachment {
- name : "position"
+ objectName : "position"
type : RenderAttachment.ColorAttachment1
texture : Texture2D {
id : positionAttachment
@@ -97,7 +97,7 @@ RenderTarget {
}
},
RenderAttachment {
- name : "normal"
+ objectName : "normal"
type : RenderAttachment.ColorAttachment2
texture : Texture2D {
id : normalAttachment
@@ -116,7 +116,7 @@ RenderTarget {
}
},
RenderAttachment {
- name : "depth"
+ objectName : "depth"
type : RenderAttachment.DepthAttachment
texture : Texture2D {
id : depthAttachment