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