You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
234 B
HLSL

#define THREAD_SIZE_VAL 256
#define THREAD_SIZE [numthreads(THREAD_SIZE_VAL,1,1)]
#define THREAD_SIZE_LARGE_VAL 1024
#define THREAD_SIZE_LARGE [numthreads(THREAD_SIZE_LARGE_VAL,1,1)]
#define THREAD_SIZE_EDITOR [numthreads(512,1,1)]