22 class VSG_DECLSPEC Dispatch :
public Inherit<Command, Dispatch>
27 Dispatch(uint32_t in_groupCountX, uint32_t in_groupCountY, uint32_t in_groupCountZ) :
28 groupCountX(in_groupCountX),
29 groupCountY(in_groupCountY),
30 groupCountZ(in_groupCountZ) {}
32 void read(
Input& input)
override;
33 void write(
Output& output)
const override;
37 uint32_t groupCountX = 0;
38 uint32_t groupCountY = 0;
39 uint32_t groupCountZ = 0;