mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
14 lines
242 B
Plaintext
14 lines
242 B
Plaintext
// See https://github.com/KhronosGroup/glslang/issues/3668
|
|
|
|
struct GfxIterationData {
|
|
float mIntegrationTrafo[24];
|
|
float mWind[3];
|
|
uint mIsTurning;
|
|
};
|
|
|
|
StructuredBuffer<GfxIterationData> bIterData : register(t2);
|
|
|
|
void main()
|
|
{
|
|
}
|