eee3138b创建于 2023年4月18日历史提交

uniform int bound;

#define FOO 3
#define BAR 2

[numthreads(2+2, 2*3, (1+FOO)*BAR)]
void main()
{
    [unroll(5*2 + 1) ]
        for (int x=0; x<bound; ++x)
            ;
}