| 54 | }; |
| 55 | |
| 56 | struct Command |
| 57 | { |
| 58 | Command(CommandType type); |
| 59 | Command(CommandType type, uint64_t op0); |
| 60 | Command(CommandType type, uint64_t op0, uint64_t op1); |
| 61 | Command(CommandType type, uint64_t op0, uint64_t op1, uint64_t op2); |
| 62 | Command(CommandType type, uint64_t op0, uint64_t op1, uint64_t op2, uint64_t op3); |
| 63 | |
| 64 | CommandType m_Type; |
| 65 | uint64_t m_Operands[4]; |
| 66 | }; |
| 67 | |
| 68 | void ParseCommands(dmRender::HRenderContext render_context, Command* commands, uint32_t command_count); |
| 69 | } |
no outgoing calls
no test coverage detected