Mark a tile in a mosaic map as being modified, so that when the tile is paged out of memory the changes are saved to disk rather than discarded.
This function is required when the caller has directly modified the contents of a tile using zmap_tile_GetDataPtr. This function is not required if the map contents are changed using the zmap_SetPixel or zmap_tile_SetPixel functions, as these functions automatically mark the tile as being changed.
| Declaration | Zeolite.h |
|---|---|
| Implementation | Zeolite.cpp |
bool zmap_tile_MarkChanged(void* hTile);
| Name | Type | Comment |
|---|---|---|
| hTile | void* | A handle to a tile, as retrieved by the zmap_GetMosaicTile function. |
False if an error occurred, and true otherwise.
None.