Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. QT5 QGraphicalEffects 1.0 OpacityMask systematic Error at runtime
Forum Updated to NodeBB v4.3 + New Features

QT5 QGraphicalEffects 1.0 OpacityMask systematic Error at runtime

Scheduled Pinned Locked Moved QML and Qt Quick
1 Posts 1 Posters 1.5k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    B Offline
    billouparis
    wrote on last edited by
    #1

    Running this QML file:

    @
    import QtQuick 2.0
    import QtGraphicalEffects 1.0
    import "."

    Item {
    id: idRoot
    width: 800
    height: 480
    Image {
    id: idBackGround
    x: 0
    y: 0
    width: 800
    height: 480
    source: "../../resource/_DSC7038.jpg"
    visible: false
    }
    Image {
    id: idMaskA
    source: "../../resource/MASKA.png"
    visible: false
    }

    OpacityMask {
        anchors.fill: idRoot
        source: idBackGround
        maskSource: idMaskB 
    }
    

    }
    @

    cause these errors:
    file:///home/billouparis/Qt5.0.0/5.0.0/gcc_64/qml/QtGraphicalEffects/OpacityMask.qml:116:5: QML SourceProxy: Binding loop detected for property "output"
    file:///home/billouparis/Qt5.0.0/5.0.0/gcc_64/qml/QtGraphicalEffects/OpacityMask.qml:111:5: QML SourceProxy: Binding loop detected for property "output"

    The result is running fine, but I have doubts on these error lines though.

    Do you think I should register a bug for this?

    Regards,
    Bill

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved