Rename typedef and fix wrong documenting comment
This commit is contained in:
parent
316457b988
commit
b0a41a23e0
|
@ -46,16 +46,17 @@ struct Blit
|
|||
{}
|
||||
};
|
||||
|
||||
typedef std::vector<Blit> BlitList;
|
||||
typedef std::vector<Blit> BlitVec;
|
||||
|
||||
/* Calculates the minimum atlas size required to hold
|
||||
* a tileset of height 'tilesetH'. If the required dimensions
|
||||
* exceed 'maxAtlasSize', Vec2i(-1, -1) is returned. */
|
||||
Vec2i minSize(int tilesetH, int maxAtlasSize);
|
||||
|
||||
/* Calculates a series of blits necessary to fill dstRows
|
||||
* with srcRows without wasting any space */
|
||||
BlitList calcBlits(int tilesetH, const Vec2i &atlasSize);
|
||||
/* Calculates a series of blits necessary to fill an atlas
|
||||
* of size 'atlasSize' with a tileset of height 'tilesetH'.
|
||||
* Usually fed results from 'minSize()'. */
|
||||
BlitVec calcBlits(int tilesetH, const Vec2i &atlasSize);
|
||||
|
||||
/* Translates a tile coordinate (not pixel!) to a physical
|
||||
* pixel coordinate in the atlas */
|
||||
|
|
|
@ -630,7 +630,7 @@ struct TilemapPrivate
|
|||
for (size_t i = 0; i < atlas.usableATs.size(); ++i)
|
||||
autotiles[atlas.usableATs[i]]->flush();
|
||||
|
||||
TileAtlas::BlitList blits = TileAtlas::calcBlits(atlas.efTilesetH, atlas.size);
|
||||
TileAtlas::BlitVec blits = TileAtlas::calcBlits(atlas.efTilesetH, atlas.size);
|
||||
|
||||
/* Clear atlas */
|
||||
FBO::bind(atlas.gl.fbo, FBO::Draw);
|
||||
|
|
Loading…
Reference in New Issue