| 563 | } |
| 564 | |
| 565 | void CRenderLayerTile::RenderTileLayerNoTileBuffer(const ColorRGBA &Color, const CRenderLayerParams &Params) |
| 566 | { |
| 567 | Graphics()->BlendNone(); |
| 568 | RenderMap()->RenderTilemap(m_pTiles, m_pLayerTilemap->m_Width, m_pLayerTilemap->m_Height, 32.0f, Color, (Params.m_RenderTileBorder ? TILERENDERFLAG_EXTEND : 0) | LAYERRENDERFLAG_OPAQUE); |
| 569 | Graphics()->BlendNormal(); |
| 570 | RenderMap()->RenderTilemap(m_pTiles, m_pLayerTilemap->m_Width, m_pLayerTilemap->m_Height, 32.0f, Color, (Params.m_RenderTileBorder ? TILERENDERFLAG_EXTEND : 0) | LAYERRENDERFLAG_TRANSPARENT); |
| 571 | } |
| 572 | |
| 573 | void CRenderLayerTile::Init() |
| 574 | { |
nothing calls this directly
no test coverage detected