blob: c63de196f9921161e9fe7702cfe1e0ec751bee8a [file] [log] [blame]
static float4 P = (0.0f).xxxx;
float4 func(inout float4 pointer) {
return pointer;
}
[numthreads(1, 1, 1)]
void main() {
float4 r = func(P);
}