| 861 | // |
| 862 | //***************************************************************************** |
| 863 | void DLParser_SetTileSize( MicroCodeCommand command ) |
| 864 | { |
| 865 | RDP_TileSize tile; |
| 866 | tile.cmd0 = command.inst.cmd0; |
| 867 | tile.cmd1 = command.inst.cmd1; |
| 868 | #ifdef DAEDALUS_DEBUG_DISPLAYLIST |
| 869 | DL_PF(" Tile[%d] (%d,%d) -> (%d,%d) [%d x %d]", |
| 870 | tile.tile_idx, tile.left/4, tile.top/4, |
| 871 | tile.right/4, tile.bottom/4, |
| 872 | ((tile.right/4) - (tile.left/4)) + 1, |
| 873 | ((tile.bottom/4) - (tile.top/4)) + 1); |
| 874 | #endif |
| 875 | gRDPStateManager.SetTileSize( tile ); |
| 876 | } |
| 877 | |
| 878 | |
| 879 | //***************************************************************************** |
nothing calls this directly
no test coverage detected