diff options
Diffstat (limited to 'qml/TextureBox3D.qml')
-rw-r--r-- | qml/TextureBox3D.qml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qml/TextureBox3D.qml b/qml/TextureBox3D.qml index 9440813..aafb7c4 100644 --- a/qml/TextureBox3D.qml +++ b/qml/TextureBox3D.qml @@ -41,6 +41,7 @@ import Qt3D.Core 2.0 import Qt3D.Render 2.0 import QtQuick 2.4 as QQ2 +import Qt3D.Extras 2.0 Entity { id: entity @@ -82,6 +83,8 @@ Entity { techniques: [ Technique { + filterKeys: FilterKey { name: "renderingStyle"; value: "forward" } + graphicsApiFilter { api: GraphicsApiFilter.OpenGL profile: GraphicsApiFilter.NoProfile @@ -99,6 +102,8 @@ Entity { } }, Technique { + filterKeys: FilterKey { name: "renderingStyle"; value: "forward" } + graphicsApiFilter { api: GraphicsApiFilter.OpenGLES profile: GraphicsApiFilter.NoProfile |