| 1295 | // |
| 1296 | //***************************************************************************** |
| 1297 | void DLParser_SetEnvColor( MicroCodeCommand command ) |
| 1298 | { |
| 1299 | #ifdef DAEDALUS_DEBUG_DISPLAYLIST |
| 1300 | DL_PF(" RGBA: %d %d %d %d", command.color.r, command.color.g, command.color.b, command.color.a); |
| 1301 | #endif |
| 1302 | c32 env_colour( command.color.r, command.color.g,command.color.b, command.color.a ); |
| 1303 | |
| 1304 | gRenderer->SetEnvColour( env_colour ); |
| 1305 | } |
| 1306 | |
| 1307 | //***************************************************************************** |
| 1308 | //RSP TRI commands.. |
nothing calls this directly
no test coverage detected