Change copyrights from Nokia to Digia
[profile/ivi/qtwayland.git] / src / compositor / compositor_api / waylandsurfacenode.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the plugins of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia.  For licensing terms and
14 ** conditions see http://qt.digia.com/licensing.  For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights.  These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file.  Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "waylandsurfacenode.h"
43 #include "waylandsurfaceitem.h"
44
45 #include <QtCore/QMutexLocker>
46 #include <QtQuick/QSGTexture>
47 #include <QtQuick/QSGSimpleTextureNode>
48 #include <QtQuick/QSGFlatColorMaterial>
49
50 WaylandSurfaceNode::WaylandSurfaceNode(WaylandSurfaceItem *item)
51     : m_item(item)
52     , m_textureUpdated(false)
53     , m_useTextureAlpha(false)
54     , m_geometry(QSGGeometry::defaultAttributes_TexturedPoint2D(), 4)
55 {
56     m_textureMaterial = WaylandSurfaceTextureMaterial::createMaterial();
57     m_opaqueTextureMaterial = WaylandSurfaceTextureOpaqueMaterial::createMaterial();
58
59     m_currentMaterial = m_opaqueTextureMaterial;
60
61     setGeometry(&m_geometry);
62     setMaterial(m_currentMaterial);
63
64     if (m_item)
65         m_item->m_node = this;
66     setFlag(UsePreprocess,true);
67 }
68
69
70 WaylandSurfaceNode::~WaylandSurfaceNode()
71 {
72     QMutexLocker locker(WaylandSurfaceItem::mutex);
73     if (m_item)
74         m_item->m_node = 0;
75     delete m_textureMaterial;
76     delete m_opaqueTextureMaterial;
77 }
78
79 void WaylandSurfaceNode::preprocess()
80 {
81     QMutexLocker locker(WaylandSurfaceItem::mutex);
82
83     if (m_item && m_item->surface()) {
84         //Update if the item is dirty and we haven't done an updateTexture for this frame
85         if (m_item->m_damaged && !m_textureUpdated) {
86             m_item->updateTexture();
87             updateTexture();
88         }
89     }
90     //Reset value for next frame: we have not done updatePaintNode yet
91     m_textureUpdated = false;
92 }
93
94 void WaylandSurfaceNode::updateTexture()
95 {
96     Q_ASSERT(m_item && m_item->textureProvider());
97
98     //If m_item->useTextureAlpha has changed to true use m_texureMaterial
99     //otherwise use m_opaqueTextureMaterial.
100     if (m_item->useTextureAlpha() != m_useTextureAlpha) {
101         m_useTextureAlpha = m_item->useTextureAlpha();
102         if (m_useTextureAlpha) {
103             m_currentMaterial = m_textureMaterial;
104         } else {
105             m_currentMaterial = m_opaqueTextureMaterial;
106         }
107         setMaterial(m_currentMaterial);
108     }
109
110     QSGTexture *texture = m_item->textureProvider()->texture();
111     setTexture(texture);
112 }
113
114 void WaylandSurfaceNode::setRect(const QRectF &rect)
115 {
116     if (m_rect == rect)
117         return;
118     m_rect = rect;
119
120     if (texture()) {
121         QSize ts = texture()->textureSize();
122         QRectF sourceRect(0, 0, ts.width(), ts.height());
123         QSGGeometry::updateTexturedRectGeometry(&m_geometry, m_rect, texture()->convertToNormalizedSourceRect(sourceRect));
124     }
125 }
126
127 void WaylandSurfaceNode::setTexture(QSGTexture *texture)
128 {
129     if (m_currentMaterial->state()->texture() == texture)
130         return;
131     m_currentMaterial->state()->setTexture(texture);
132
133     QSize ts = texture->textureSize();
134     QRectF sourceRect(0, 0, ts.width(), ts.height());
135     QSGGeometry::updateTexturedRectGeometry(&m_geometry, m_rect, texture->convertToNormalizedSourceRect(sourceRect));
136     markDirty(DirtyMaterial);
137 }
138
139 QSGTexture *WaylandSurfaceNode::texture() const
140 {
141     return m_currentMaterial->state()->texture();
142 }
143
144 void WaylandSurfaceNode::setItem(WaylandSurfaceItem *item)
145 {
146     m_item = item;
147 }