rhi: Remove reserved and since from the shader classes
Private API, do not bother with these yet. Change-Id: I77fb8fadee427425759ed42234944b30155db0f5 Reviewed-by: Lars Knoll <lars.knoll@qt.io>bb10
parent
6657d8b925
commit
39d74b5b3d
|
|
@ -43,7 +43,6 @@ QT_BEGIN_NAMESPACE
|
|||
/*!
|
||||
\class QShader
|
||||
\inmodule QtRhi
|
||||
\since 5.14
|
||||
|
||||
\brief Contains multiple versions of a shader translated to multiple shading languages,
|
||||
together with reflection metadata.
|
||||
|
|
|
|||
|
|
@ -76,7 +76,6 @@ public:
|
|||
private:
|
||||
int m_version = 100;
|
||||
Flags m_flags;
|
||||
Q_DECL_UNUSED_MEMBER quint64 m_reserved = 0;
|
||||
};
|
||||
|
||||
Q_DECLARE_OPERATORS_FOR_FLAGS(QShaderVersion::Flags)
|
||||
|
|
@ -97,7 +96,6 @@ public:
|
|||
private:
|
||||
QByteArray m_shader;
|
||||
QByteArray m_entryPoint;
|
||||
Q_DECL_UNUSED_MEMBER quint64 m_reserved = 0;
|
||||
};
|
||||
|
||||
Q_DECLARE_TYPEINFO(QShaderCode, Q_MOVABLE_TYPE);
|
||||
|
|
@ -182,7 +180,6 @@ private:
|
|||
QShader::Source m_source = QShader::SpirvShader;
|
||||
QShaderVersion m_sourceVersion;
|
||||
QShader::Variant m_sourceVariant = QShader::StandardShader;
|
||||
Q_DECL_UNUSED_MEMBER quint64 m_reserved = 0;
|
||||
};
|
||||
|
||||
Q_DECLARE_TYPEINFO(QShaderKey, Q_MOVABLE_TYPE);
|
||||
|
|
|
|||
|
|
@ -44,7 +44,6 @@ QT_BEGIN_NAMESPACE
|
|||
/*!
|
||||
\class QShaderDescription
|
||||
\inmodule QtRhi
|
||||
\since 5.14
|
||||
|
||||
\brief Describes the interface of a shader.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue