aboutsummaryrefslogtreecommitdiffstats
path: root/src/render/qssgrendertexturebase.cpp
blob: 008a15672194595ad9a5fae5644f21195918a2ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/****************************************************************************
**
** Copyright (C) 2008-2012 NVIDIA Corporation.
** Copyright (C) 2019 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Quick 3D.
**
** $QT_BEGIN_LICENSE:GPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 or (at your option) any later version
** approved by the KDE Free Qt Foundation. The licenses are as published by
** the Free Software Foundation and appearing in the file LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/

#include <QtQuick3DRender/private/qssgrendercontext_p.h>
#include <QtQuick3DRender/private/qssgrendertexturebase_p.h>

#include <limits>

QT_BEGIN_NAMESPACE

class QSSGRenderTextureSampler
{
public:
    QSSGRenderTextureMinifyingOp minFilter = QSSGRenderTextureMinifyingOp::Linear;
    QSSGRenderTextureMagnifyingOp magFilter = QSSGRenderTextureMagnifyingOp::Linear;
    QSSGRenderTextureCoordOp wrapS = QSSGRenderTextureCoordOp::ClampToEdge;
    QSSGRenderTextureCoordOp wrapT = QSSGRenderTextureCoordOp::ClampToEdge;
    QSSGRenderTextureCoordOp wrapR = QSSGRenderTextureCoordOp::ClampToEdge;
    QSSGRenderTextureSwizzleMode swizzleMode = QSSGRenderTextureSwizzleMode::NoSwizzle;
    float minLod = -1000.;
    float maxLod = 1000.;
    float lodBias = 0.;
    QSSGRenderTextureCompareMode compareMode = QSSGRenderTextureCompareMode::NoCompare;
    QSSGRenderTextureCompareOp compareOp = QSSGRenderTextureCompareOp::LessThanOrEqual;
    float m_anisotropy = 1.;

    /**
     * @brief constructor
     *
     * @param[in] context		Pointer to context
     * @param[in] fnd			Pointer to foundation
     * @param[in] minFilter		Texture min filter
     * @param[in] magFilter		Texture mag filter
     * @param[in] wrapS			Texture coord generation for S
     * @param[in] wrapT			Texture coord generation for T
     * @param[in] wrapR			Texture coord generation for R
     * @param[in] swizzleMode	Texture swizzle mode
     * @param[in] minLod		Texture min level of detail
     * @param[in] maxLod		Texture max level of detail
     * @param[in] lodBias		Texture level of detail bias (unused)
     * @param[in] compareMode	Texture compare mode
     * @param[in] compareFunc	Texture compare function
     * @param[in] anisoFilter	Aniso filter value [1.0, 16.0]
     * @param[in] borderColor	Texture border color float[4] (unused)
     *
     * @return No return.
     */
    explicit QSSGRenderTextureSampler(const QSSGRef<QSSGRenderContext> &context)
        : m_backend(context->backend())
        , m_handle(nullptr)
    {
        // create backend handle
        m_handle = m_backend->createSampler();
    }

    ~QSSGRenderTextureSampler()
    {
        if (m_handle)
            m_backend->releaseSampler(m_handle);
    }

    /**
     * @brief get the backend object handle
     *
     * @return the backend object handle.
     */
    QSSGRenderBackend::QSSGRenderBackendSamplerObject handle() const { return m_handle; }

private:
    QSSGRef<QSSGRenderBackend> m_backend; ///< pointer to backend
    QSSGRenderBackend::QSSGRenderBackendSamplerObject m_handle = nullptr;
};


QSSGRenderTextureBase::QSSGRenderTextureBase(const QSSGRef<QSSGRenderContext> &context,
                                                 QSSGRenderTextureTargetType texTarget,
                                                 bool ownsTexture)
    : m_context(context)
    , m_backend(context->backend())
    , m_handle(nullptr)
    , m_textureUnit(std::numeric_limits<qint32>::max())
    , m_samplerParamsDirty(true)
    , m_texStateDirty(false)
    , m_sampleCount(1)
    , m_format(QSSGRenderTextureFormat::Unknown)
    , m_texTarget(texTarget)
    , m_baseLevel(0)
    , m_maxLevel(1000)
    , m_maxMipLevel(0)
    , m_immutable(false)
    , m_ownsTexture(ownsTexture)
{
    if (m_ownsTexture)
        m_handle = m_backend->createTexture();
    m_sampler = new QSSGRenderTextureSampler(context);
}

QSSGRenderTextureBase::~QSSGRenderTextureBase()
{
    if (m_sampler)
        delete m_sampler;
    if (m_handle && m_ownsTexture)
        m_backend->releaseTexture(m_handle);
}

void QSSGRenderTextureBase::setBaseLevel(qint32 value)
{
    if (m_baseLevel != value) {
        m_baseLevel = value;
        m_texStateDirty = true;
    }
}

void QSSGRenderTextureBase::setMaxLevel(qint32 value)
{
    if (m_maxLevel != value) {
        m_maxLevel = value;
        m_texStateDirty = true;
    }
}

void QSSGRenderTextureBase::setMinFilter(QSSGRenderTextureMinifyingOp value)
{
    if (m_sampler->minFilter != value) {
        m_sampler->minFilter = value;
        m_samplerParamsDirty = true;
    }
}

void QSSGRenderTextureBase::setMagFilter(QSSGRenderTextureMagnifyingOp value)
{
    if (m_sampler->magFilter != value) {
        m_sampler->magFilter = value;
        m_samplerParamsDirty = true;
    }
}

void QSSGRenderTextureBase::setTextureWrapS(QSSGRenderTextureCoordOp value)
{
    if (m_sampler->wrapS != value) {
        m_sampler->wrapS = value;
        m_samplerParamsDirty = true;
    }
}

void QSSGRenderTextureBase::setTextureWrapT(QSSGRenderTextureCoordOp value)
{
    if (m_sampler->wrapT != value) {
        m_sampler->wrapT = value;
        m_samplerParamsDirty = true;
    }
}

void QSSGRenderTextureBase::setTextureCompareMode(QSSGRenderTextureCompareMode value)
{
    if (m_sampler->compareMode != value) {
        m_sampler->compareMode = value;
        m_samplerParamsDirty = true;
    }
}

void QSSGRenderTextureBase::setTextureCompareFunc(QSSGRenderTextureCompareOp value)
{
    if (m_sampler->compareOp != value) {
        m_sampler->compareOp = value;
        m_samplerParamsDirty = true;
    }
}

void QSSGRenderTextureBase::applyTexParams()
{
    if (m_samplerParamsDirty && m_texTarget != QSSGRenderTextureTargetType::Texture2D_MS) {
        m_backend->updateSampler(m_sampler->handle(),
                                 m_texTarget,
                                 m_sampler->minFilter,
                                 m_sampler->magFilter,
                                 m_sampler->wrapS,
                                 m_sampler->wrapT,
                                 m_sampler->wrapR,
                                 m_sampler->minLod,
                                 m_sampler->maxLod,
                                 m_sampler->lodBias,
                                 m_sampler->compareMode,
                                 m_sampler->compareOp);

        m_samplerParamsDirty = false;
    }

    if (m_texStateDirty) {
        m_backend->updateTextureObject(m_handle, m_texTarget, m_baseLevel, m_maxLevel);
        m_texStateDirty = false;
    }
}

void QSSGRenderTextureBase::applyTexSwizzle()
{
    QSSGRenderTextureSwizzleMode theSwizzleMode = m_backend->getTextureSwizzleMode(m_format);
    if (theSwizzleMode != m_sampler->swizzleMode) {
        m_sampler->swizzleMode = theSwizzleMode;
        m_backend->updateTextureSwizzle(m_handle, m_texTarget, theSwizzleMode);
    }
}
QT_END_NAMESPACE