Refine command list debugging functionality and its qt interface.

This commit is contained in:
Tony Wasserka
2014-05-18 19:59:36 +02:00
committed by bunnei
parent 6893732348
commit b0051b2203
4 changed files with 124 additions and 27 deletions

View File

@ -24,6 +24,8 @@ enum class CommandId : u32
};
union CommandHeader {
CommandHeader(u32 h) : hex(h) {}
u32 hex;
BitField< 0, 16, CommandId> cmd_id;