| 366 | } |
| 367 | |
| 368 | bool RenderAdd_SetViewParams(RenderCmdList *cmdList, const SetViewParamsCmd &cmd) |
| 369 | { |
| 370 | auto ret = Render_AppendCmdType(cmdList, cmd._type, &cmd, sizeof(cmd)); |
| 371 | if (!cmdList->immediateMode) |
| 372 | { |
| 373 | return ret; |
| 374 | } |
| 375 | |
| 376 | RenderDraw_SetViewParams(cmd, &cmdList->state); |
| 377 | return true; |
| 378 | } |
| 379 | |
| 380 | bool RenderAdd_SetModelViewTranslation( |
| 381 | RenderCmdList *cmdList, const SetModelViewTranslationCmd &cmd) |
no test coverage detected