aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/scenegraph/customgeometry
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/scenegraph/customgeometry')
-rw-r--r--examples/quick/scenegraph/customgeometry/doc/src/customgeometry.qdoc2
-rw-r--r--examples/quick/scenegraph/customgeometry/main.qml2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/quick/scenegraph/customgeometry/doc/src/customgeometry.qdoc b/examples/quick/scenegraph/customgeometry/doc/src/customgeometry.qdoc
index bd235e5dfb..68b041b3ca 100644
--- a/examples/quick/scenegraph/customgeometry/doc/src/customgeometry.qdoc
+++ b/examples/quick/scenegraph/customgeometry/doc/src/customgeometry.qdoc
@@ -180,7 +180,7 @@
\quotefile scenegraph/customgeometry/customgeometry.pro
- As the bezier curve is drawn using GL_LINE_STRIP, we specify that
+ As the bezier curve is drawn as line strips, we specify that
the view should be multisampled to get antialiasing. This is not
required, but it will make the item look a bit nicer on hardware
that supports it. Multisampling is not enabled by default because
diff --git a/examples/quick/scenegraph/customgeometry/main.qml b/examples/quick/scenegraph/customgeometry/main.qml
index fd984520f2..6158b6554f 100644
--- a/examples/quick/scenegraph/customgeometry/main.qml
+++ b/examples/quick/scenegraph/customgeometry/main.qml
@@ -79,7 +79,7 @@ Item {
width: parent.width - 40
wrapMode: Text.WordWrap
- text: "This curve is a custom scene graph item, implemented using GL_LINE_STRIP"
+ text: "This curve is a custom scene graph item, implemented using line strips"
}
}
//! [4]