• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// See https://github.com/KhronosGroup/glslang/issues/3668
2
3struct GfxIterationData {
4    float mIntegrationTrafo[24];
5    float mWind[3];
6    uint mIsTurning;
7};
8
9StructuredBuffer<GfxIterationData> bIterData : register(t2);
10
11void main()
12{
13}
14