QRhiVertexInputAttribute Class
単一の頂点入力要素を記述します。詳細...
Header: | #include <rhi/qrhi.h> |
CMake: | find_package(Qt6 REQUIRED COMPONENTS Gui) target_link_libraries(mytarget PRIVATE Qt6::GuiPrivate) |
qmake: | QT += gui-private |
Since: | Qt 6.6 |
パブリック型
enum | Format { Float4, Float3, Float2, Float, UNormByte4, …, SShort } |
パブリック関数
QRhiVertexInputAttribute() | |
QRhiVertexInputAttribute(int binding, int location, QRhiVertexInputAttribute::Format format, quint32 offset, int matrixSlice = -1) | |
int | binding() const |
QRhiVertexInputAttribute::Format | format() const |
int | location() const |
int | matrixSlice() const |
quint32 | offset() const |
void | setBinding(int b) |
void | setFormat(QRhiVertexInputAttribute::Format f) |
void | setLocation(int loc) |
void | setMatrixSlice(int slice) |
void | setOffset(quint32 ofs) |
関連する非メンバー
size_t | qHash(const QRhiVertexInputAttribute &v, size_t seed = 0) |
bool | operator!=(const QRhiVertexInputAttribute &a, const QRhiVertexInputAttribute &b) |
bool | operator==(const QRhiVertexInputAttribute &a, const QRhiVertexInputAttribute &b) |
詳細説明
このメンバは、単一の頂点入力要素のバインディング番号、位置、フォーマット、およびオフセットを指定します。
注意: HLSL の場合、SPIR-V から変換された頂点シェーダーは、各入力のセマンティックとしてTEXCOORD<location>
を使用すると想定されます。したがって、個別のセマンティック名とインデックスはありません。
例として、以下の入力を持つ頂点シェーダを想定します:
layout(location = 0) in vec4 position; layout(location = 1) in vec2 texcoord;
ここで、3 つのコンポーネントの頂点位置(x, y, z)
と 2 つのコンポーネントのテクスチャ座標(u, v)
が、バッファ(または別々のバッファでもよい)にノンインターリーブ形式で提供されているとします。2つのバインディングが定義されると、属性は次のように指定できます:
QRhiVertexInputLayout inputLayout; inputLayout.setBindings({ { 3 * sizeof(float) }, { 2 * sizeof(float) } }); inputLayout.setAttributes({ { 0, 0, QRhiVertexInputAttribute::Float3, 0 }, { 1, 1, QRhiVertexInputAttribute::Float2, 0 } });
この頂点入力レイアウトを持つグラフィックスパイプラインがバインドされると、頂点入力は、最初に位置、次にテクスチャ座標を持つ単一のバッファがあると仮定して、36個の頂点を持つ立方体を描画するために次のように設定できます:
const QRhiCommandBuffer::VertexInput vbufBindings[] = { { cubeBuf, 0 }, { cubeBuf, 36 * 3 * sizeof(float) } }; cb->setVertexInput(0, 2, vbufBindings);
インターリーブされたデータを扱う場合、通常、バインディングは1つだけで、複数のアトリビュートが同じバッファのバインディングポイントを参照します:
QRhiVertexInputLayout inputLayout; inputLayout.setBindings({ { 5 * sizeof(float) } }); inputLayout.setAttributes({ { 0, 0, QRhiVertexInputAttribute::Float3, 0 }, { 0, 1, QRhiVertexInputAttribute::Float2, 3 * sizeof(float) } });
となります:
const QRhiCommandBuffer::VertexInput vbufBinding(interleavedCubeBuf, 0); cb->setVertexInput(0, 1, &vbufBinding);
Note: これは互換性保証に制限のあるRHI APIです。詳細はQRhi を参照してください。
QRhiCommandBuffer::setVertexInput()も参照 。
メンバ型ドキュメント
enum QRhiVertexInputAttribute::Format
要素データの型を指定します。
定数 | 値 | 説明 |
---|---|---|
QRhiVertexInputAttribute::Float4 | 0 | 4成分浮動小数点ベクトル |
QRhiVertexInputAttribute::Float3 | 1 | 3成分浮動小数点ベクトル |
QRhiVertexInputAttribute::Float2 | 2 | 2成分浮動小数点ベクトル |
QRhiVertexInputAttribute::Float | 3 | 浮動小数点 |
QRhiVertexInputAttribute::UNormByte4 | 4 | 4成分正規化符号なしバイトベクトル |
QRhiVertexInputAttribute::UNormByte2 | 5 | 2成分正規化符号なしバイトベクトル |
QRhiVertexInputAttribute::UNormByte | 6 | 正規化符号なしバイト |
QRhiVertexInputAttribute::UInt4 | 7 | 4成分符号なし整数ベクトル |
QRhiVertexInputAttribute::UInt3 | 8 | 3成分符号なし整数ベクトル |
QRhiVertexInputAttribute::UInt2 | 9 | 2成分符号なし整数ベクトル |
QRhiVertexInputAttribute::UInt | 10 | 符号なし整数 |
QRhiVertexInputAttribute::SInt4 | 11 | 4成分符号なし整数ベクトル |
QRhiVertexInputAttribute::SInt3 | 12 | 3成分符号なし整数ベクトル |
QRhiVertexInputAttribute::SInt2 | 13 | 2成分符号なし整数ベクトル |
QRhiVertexInputAttribute::SInt | 14 | 符号付き整数 |
QRhiVertexInputAttribute::Half4 | 15 | 4成分半精度(16ビット)浮動小数点ベクトル |
QRhiVertexInputAttribute::Half3 | 16 | 3成分半精度(16ビット)浮動小数点ベクトル |
QRhiVertexInputAttribute::Half2 | 17 | 2成分半精度(16ビット)浮動小数点ベクトル |
QRhiVertexInputAttribute::Half | 18 | 半精度(16ビット)浮動小数点 |
QRhiVertexInputAttribute::UShort4 | 19 | 4成分符号なしショート(16ビット)整数ベクトル |
QRhiVertexInputAttribute::UShort3 | 20 | 3成分符号なしショート(16ビット)整数ベクトル |
QRhiVertexInputAttribute::UShort2 | 21 | 2成分符号なしショート(16ビット)整数ベクトル |
QRhiVertexInputAttribute::UShort | 22 | 符号なしショート(16ビット)整数 |
QRhiVertexInputAttribute::SShort4 | 23 | 4成分符号なしショート(16ビット)整数ベクトル |
QRhiVertexInputAttribute::SShort3 | 24 | 3成分符号ありショート(16ビット)整数ベクトル |
QRhiVertexInputAttribute::SShort2 | 25 | 2コンポーネント符号ありショート(16ビット)整数ベクトル |
QRhiVertexInputAttribute::SShort | 26 | 符号付きショート(16ビット)整数 |
メモ: QRhi::Feature::HalfAttributes 機能フラグにより、半精度浮動小数点属性のサポートが実行時に示されます。
メモ : Direct3D 11/12は16ビットの入力属性をサポートしますが、Half3、UShort3、SShort3タイプはサポートしません。D3Dバックエンドは、Half3をHalf4として、UShort3をUShort4として、SShort3をSShort4として通過させます。クロスプラットフォームの互換性を確保するため、16ビット入力は8バイトにパディングする必要があります。
メンバ関数ドキュメント
[constexpr noexcept]
QRhiVertexInputAttribute::QRhiVertexInputAttribute()
デフォルトの頂点入力属性記述を構築します。
QRhiVertexInputAttribute::QRhiVertexInputAttribute(int binding, int location, QRhiVertexInputAttribute::Format format, quint32 offset, int matrixSlice = -1)
指定されたbinding 番号、location 、format 、offset を持つ頂点入力属性記述を構築します。
matrixSlice この属性が行列の 1 行または 1 列に対応する場合を除き(例えば,4x4 の行列は 4 vec4 となり,4 つの連続した頂点入力位置を消費します),-1 を指定する必要があります. は,展開された行列の最初の行または列の と常に等しくなければなりません.location - matrixSlice
location
int QRhiVertexInputAttribute::binding() const
結合点インデックスを返します.
setBinding()も参照してください .
QRhiVertexInputAttribute::Format QRhiVertexInputAttribute::format() const
頂点入力要素のフォーマットを返します.
setFormat()も参照して ください.
int QRhiVertexInputAttribute::location() const
頂点入力要素の位置を返します.
setLocation()も参照して ください。
int QRhiVertexInputAttribute::matrixSlice() const
入力要素が行列の行または列に対応する場合は行列スライスを返し,対応しない場合は -1 を返します.
setMatrixSlice()も参照 。
quint32 QRhiVertexInputAttribute::offset() const
入力要素のバイトオフセットを返します.
setOffset()も参照して ください。
void QRhiVertexInputAttribute::setBinding(int b)
結合点インデックスをb に設定します.デフォルトでは,これは 0 に設定されています.
binding()も参照して ください。
void QRhiVertexInputAttribute::setFormat(QRhiVertexInputAttribute::Format f)
頂点入力要素の形式をf に設定します。 デフォルトでは Float4 に設定されます。
format() も参照して ください。
void QRhiVertexInputAttribute::setLocation(int loc)
頂点入力要素の位置をloc に設定します。 デフォルトでは 0 に設定されます。
location()も参照して ください.
void QRhiVertexInputAttribute::setMatrixSlice(int slice)
行列slice を設定します.デフォルトではこれは -1 にセットされ,この属性が行列の行または列に対応する場合のみ(例えば,4x4 の行列は 4 vec4 となり,4 つの連続した頂点入力位置を消費します), >= 0 にセットされるべきです.この場合,これは行または列のインデックスとなります.location - matrixSlice
は,展開された行列の最初の行または列のlocation
と常に等しくなければいけません.
matrixSlice()も参照してください .
void QRhiVertexInputAttribute::setOffset(quint32 ofs)
入力要素のバイトオフセットをofs に設定する。
offset()も参照 。
関連する非メンバ
[noexcept]
size_t qHash(const QRhiVertexInputAttribute &v, size_t seed = 0)
seed を計算の種として,v のハッシュ値を返します.
[noexcept]
bool operator!=(const QRhiVertexInputAttribute &a, const QRhiVertexInputAttribute &b)
2 つのQRhiVertexInputAttribute オブジェクトa とb の値が等しい場合はfalse
を返し、そうでない場合はtrue
を返します。
[noexcept]
bool operator==(const QRhiVertexInputAttribute &a, const QRhiVertexInputAttribute &b)
つのQRhiVertexInputAttribute オブジェクトa とb の値が等しい場合、true
を返します。
©2024 The Qt Company Ltd. 本文書に含まれる文書の著作権は、それぞれの所有者に帰属します。 本書で提供されるドキュメントは、Free Software Foundation が発行したGNU Free Documentation License version 1.3に基づいてライセンスされています。 Qtおよびそれぞれのロゴは、フィンランドおよびその他の国におけるThe Qt Company Ltd.の 商標です。その他すべての商標は、それぞれの所有者に帰属します。