Blitter


A blitter is a circuit, sometimes as a coprocessor or a logic block on a microprocessor, dedicated to the rapid movement and modification of data within a computer's memory. A blitter can copy large quantities of data from one memory area to another relatively quickly, and in parallel with the CPU, while freeing up the CPU's more complex capabilities for other operations. A typical use for a blitter is the movement of a bitmap, such as windows and fonts in a graphical user interface or images and backgrounds in a 2D video game. The name comes from the bit blit operation of the 1973 Xerox Alto, which stands for bit-block transfer. A blit operation is more than a memory copy, because it can involve data that's not byte aligned, handling transparent pixels, and various ways of combining the source and destination data.
Blitters have largely been superseded by programmable graphics processing units.

History

In early computers with raster-graphics output, the frame buffer was normally held in main memory and updated via software running on the CPU. For many simple graphics routines, like compositing a smaller image into a larger one or drawing a filled rectangle, large amounts of memory had to be manipulated, and many CPU cycles were spent fetching and decoding instructions for short repetitive loops of load/store instructions. For CPUs without caches, the bus requirement for instructions was as significant as data. Further, as a single byte usually held between 2 and 8 pixels, the data was not naturally aligned for the CPU, so extra shifting and masking operations were required.

Blitters in personal computers and video games

1973: The Xerox Alto, where the term bit blit originated, has a bit block transfer instruction implemented in microcode, making it much faster than the same operation written on the CPU. The microcode was implemented by Dan Ingalls.
1982: The ' arcade game from Williams Electronics includes two blitter chips which allow the game to have up to 80 simultaneously moving objects. Performance was measured at roughly 910 KB/second. The blitter operates on 4-bit pixels where color 0 is transparent, allowing for non-rectangular shapes. Williams used the same hardware in other games from the time period, including Sinistar and Joust.
1984: The MS-DOS compatible Mindset personal computer contains a custom VLSI chip to move rectangular sections of a bitmap. The hardware handles transparency and eight modes for combining the source and destination data. The Mindset was claimed to have graphics up to 50x faster than PCs of the time, but the system was not successful.
1985: One of the hardware coprocessors in the Amiga personal computer is a blitter. The first US patent filing to use the term blitter was "Personal computer apparatus for block transfer of bit-mapped image data," assigned to Commodore-Amiga, Inc. The blitter performs an arbitrary boolean operation on three bit vectors of size 16:
1986: The TMS34010 is a general purpose 32-bit processor with additional blitter-like instructions for manipulating bitmap data. It is optimized for cases that take extra processing on the CPU, such as handling transparent pixels, working with non-byte aligned data, and converting between bit depths. The TMS34010 served as both CPU and GPU for a number of arcade games starting in 1988 with Narc and including Hard Drivin, ', Smash TV, Mortal Kombat, and NBA Jam'', It was also used in professional-level graphics accelerator boards in the 1990s.
1986: The Intel 82786 is a programmable graphics processor with a BIT_BLT instruction to move rectangular sections of bitmaps.
1987: The IBM 8514/A display adapter, introduced with the IBM Personal System/2 computers in April 1987, includes bit block transfer hardware.
1987: The Atari Mega ST 2 ships with a blitter chip. Officially called the "Atari ST Bit-Block Transfer Processor", stylized as BLiTTER, it provides 16 options for merging source and destination data. The blitter is supported on most subsequent ST machines, including later revisions of the entry level STfm home computers.
1989: The short-lived Atari Transputer Workstation contains blitter hardware as part of its "Blossom" video system.
1993: The last game console produced by Atari Corporation, the Jaguar, ships with blitter hardware as part of the custom "Tom" chip.

Operation

Typically, a computer program puts information into certain registers describing what memory transfer needs to be completed and the logical operations to perform on the data. The CPU then triggers the blitter to begin operating. The CPU is free for other processing while the blitter is working, though the blit running in parallel uses memory bandwidth.
To copy data with transparent portions—such as sprites—a color can be designated to be ignored during the blit. On other systems, a second 1 bit per pixel image may be used as a "mask" to indicate which pixels to transfer and which to leave untouched. The mask operates like a stencil. The logical operation for transparent-color system is destination := OR sprite. For a separate, precalculated mask plane, where both the masked and unmasked pixels can be any palette entry / combination of 0 and 1 bits, the operation is destination := OR , similar in operation to the XOR based method employed by software rendering.

Other approaches

Hardware sprites are small bitmaps that can be positioned independently, composited together with the background on-the-fly by the video chip, so no actual modification of the frame buffer occurs. Sprite systems are more efficient for moving graphics, typically requiring 1/3 the memory cycles because only image data—not CPU instructions—need to be fetched, with the subsequent compositing happening on-chip. The downside of sprites is a limit of moving graphics per scanline, which can range from three to eight to significantly higher for 16-bit arcade hardware and consoles, and the inability to update a permanent bitmap.