Initial player integration using Qt Multimedia

This commit is contained in:
Thomas Perl 2013-09-24 22:12:12 +02:00
parent a333def9c1
commit 844c133017
13 changed files with 306 additions and 14 deletions

View file

@ -21,9 +21,21 @@ import QtQuick 2.0
import 'qml'
Rectangle {
color: 'black'
color: '#336688'
width: 480
height: 800
Image {
anchors.fill: parent
source: 'qml/images/mask.png'
}
Image {
anchors.fill: parent
source: 'qml/images/noise.png'
fillMode: Image.Tile
}
Main {}
}