blob: d4893484fc691a7eed7d628acc176d2eed166855 [file] [log] [blame]
struct str {
float4 i;
};
float4 func(inout float4 pointer) {
return pointer;
}
static str P = (str)0;
[numthreads(1, 1, 1)]
void main() {
const float4 r = func(P.i);
return;
}