summaryrefslogtreecommitdiffstats
path: root/src/gui/rhi/qshader_p.h
blob: f77bcb1259d7023e52afda56297903b607d398aa (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
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#ifndef QSHADER_P_H
#define QSHADER_P_H

//
//  W A R N I N G
//  -------------
//
// This file is not part of the Qt API.  It exists for the convenience
// of a number of Qt sources files.  This header file may change from
// version to version without notice, or even be removed.
//
// We mean it.
//

#include <rhi/qshader.h>
#include <QtCore/QAtomicInt>
#include <QtCore/QMap>
#include <QtCore/QDebug>

QT_BEGIN_NAMESPACE

struct Q_GUI_EXPORT QShaderPrivate
{
    static const int QSB_VERSION = 9;
    static const int QSB_VERSION_WITHOUT_INPUT_OUTPUT_INTERFACE_BLOCKS = 8;
    static const int QSB_VERSION_WITHOUT_EXTENDED_STORAGE_BUFFER_INFO = 7;
    static const int QSB_VERSION_WITHOUT_NATIVE_SHADER_INFO = 6;
    static const int QSB_VERSION_WITHOUT_SEPARATE_IMAGES_AND_SAMPLERS = 5;
    static const int QSB_VERSION_WITHOUT_VAR_ARRAYDIMS = 4;
    static const int QSB_VERSION_WITH_CBOR = 3;
    static const int QSB_VERSION_WITH_BINARY_JSON = 2;
    static const int QSB_VERSION_WITHOUT_BINDINGS = 1;

    enum MslNativeShaderInfoExtraBufferBindings {
        MslTessVertIndicesBufferBinding = 0,
        MslTessVertTescOutputBufferBinding,
        MslTessTescTessLevelBufferBinding,
        MslTessTescPatchOutputBufferBinding,
        MslTessTescParamsBufferBinding,
        MslTessTescInputBufferBinding,
        MslBufferSizeBufferBinding,
        MslMultiViewMaskBufferBinding
    };

    QShaderPrivate()
        : ref(1)
    {
    }

    QShaderPrivate(const QShaderPrivate &other)
        : ref(1),
          qsbVersion(other.qsbVersion),
          stage(other.stage),
          desc(other.desc),
          shaders(other.shaders),
          bindings(other.bindings),
          combinedImageMap(other.combinedImageMap),
          nativeShaderInfoMap(other.nativeShaderInfoMap)
    {
    }

    static QShaderPrivate *get(QShader *s) { return s->d; }
    static const QShaderPrivate *get(const QShader *s) { return s->d; }
    static int qtQsbVersion(QShader::SerializedFormatVersion qtVersion) {
        switch (qtVersion) {
        case QShader::SerializedFormatVersion::Qt_6_4:
            return (QShaderPrivate::QSB_VERSION_WITHOUT_SEPARATE_IMAGES_AND_SAMPLERS + 1);
        case QShader::SerializedFormatVersion::Qt_6_5:
            return (QShaderPrivate::QSB_VERSION_WITHOUT_EXTENDED_STORAGE_BUFFER_INFO + 1);
        default:
            return QShaderPrivate::QSB_VERSION;
        }
    }

    QAtomicInt ref;
    int qsbVersion = QSB_VERSION;
    QShader::Stage stage = QShader::VertexStage;
    QShaderDescription desc;
    // QMap not QHash because we need to be able to iterate based on sorted keys
    QMap<QShaderKey, QShaderCode> shaders;
    QMap<QShaderKey, QShader::NativeResourceBindingMap> bindings;
    QMap<QShaderKey, QShader::SeparateToCombinedImageSamplerMappingList> combinedImageMap;
    QMap<QShaderKey, QShader::NativeShaderInfo> nativeShaderInfoMap;
};

QT_END_NAMESPACE

#endif