MCPcopy Create free account
hub / github.com/DaedalusX64/daedalus / DLParser_SetTileSize

Function DLParser_SetTileSize

Source/HLEGraphics/DLParser.cpp:863–876  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

861//
862//*****************************************************************************
863void 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//*****************************************************************************

Callers

nothing calls this directly

Calls 1

SetTileSizeMethod · 0.80

Tested by

no test coverage detected