Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.18.0/tests/align2.ispc
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

21 lines
309 B
Plaintext

#include "../test_static.isph"
// rule: skip on arch=xe32
// rule: skip on arch=xe64
struct InnerVec {
int i;
};
struct f_sz {
InnerVec u;
uniform int tail;
};
export void keep_struct_declared(varying f_sz * uniform s) {
}
task void result(uniform float RET[]) {
RET[0] = sizeof(f_sz);
}