13 lines
242 B
C
13 lines
242 B
C
#ifndef WI_SHADERINTEROP_GPUSORTLIB_H
|
|
#define WI_SHADERINTEROP_GPUSORTLIB_H
|
|
|
|
#include "ShaderInterop.h"
|
|
|
|
CBUFFER(SortConstants, CBSLOT_OTHER_GPUSORTLIB)
|
|
{
|
|
int3 job_params;
|
|
uint counterReadOffset;
|
|
};
|
|
|
|
#endif // WI_SHADERINTEROP_GPUSORTLIB_H
|