diffs property

List<List<int>> diffs
final

The list of diff operations to apply to render this frame.

Each diff is a list of integers with the format: srcImageIndex, srcTileIndex, countX, countY, destTileIndex

  • srcImageIndex: Index of the source image in the images list
  • srcTileIndex: Index of the tile in the source image
  • countX: Number of tiles horizontally
  • countY: Number of tiles vertically
  • destTileIndex: Index of the destination tile in the frame

Implementation

final List<List<int>> diffs;