==================== R_ClearCommandChain Called after every buffer submission and by R_ToggleSmpFrame ==================== */
| 186 | ==================== |
| 187 | */ |
| 188 | void R_ClearCommandChain( void ) { |
| 189 | // clear the command chain |
| 190 | frameData->cmdHead = frameData->cmdTail = (emptyCommand_t *)R_FrameAlloc( sizeof( *frameData->cmdHead ) ); |
| 191 | frameData->cmdHead->commandId = RC_NOP; |
| 192 | frameData->cmdHead->next = NULL; |
| 193 | } |
| 194 | |
| 195 | /* |
| 196 | ================= |
no test coverage detected