Searched defs:CommandHeader (Results 1 – 1 of 1) sorted by relevance
44 struct CommandHeader { struct45 uint32_t size:21;46 uint32_t command:11;48 GPU_EXPORT static const int32_t kMaxSize = (1 << 21) - 1;50 void Init(uint32_t _command, int32_t _size) { in Init()81 COMPILE_ASSERT(sizeof(CommandHeader) == 4, Sizeof_CommandHeader_is_not_4); argument