Files
2025-05-18 13:04:45 +08:00

21 lines
323 B
Plaintext

// rule: skip on arch=genx32
// rule: skip on arch=genx64
struct InnerUniform {
uniform int i;
};
struct f_sz {
uniform int type, temp[5];
int k[3];
InnerUniform u;
};
export void keep_struct_declared(varying f_sz * uniform s) {
}
export void result(uniform float RET[]) {
RET[0] = sizeof(f_sz);
}