Blitter

From Wikipedia, the free encyclopedia

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 icons 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,[1] which stands for bit-block transfer.[2] A blit operation is more than a memory copy, because it can involve data that's not byte aligned (hence the bit in bit blit), handling transparent pixels (pixels which should not overwrite the destination), and various ways of combining the source and destination data.

Blitters have largely been superseded by programmable graphics processing units.

History[edit]

In computers without hardware accelerated raster graphics, which includes most 1970s and 1980s home computers and IBM PC compatibles through the mid-1990s, the frame buffer is commonly stored in CPU-accessible memory. Drawing is accomplished by updating the frame buffer via software. For basic graphics routines, like compositing a smaller image into a larger one (such as for a video game) or drawing a filled rectangle, large amounts of memory need to be manipulated, and many cycles are spent fetching and decoding short loops of load/store instructions. For CPUs without caches, the bus requirement for instructions is as significant as data. To reduce the size of the frame buffer, a single byte may not necessarily correspond to a pixel, but contain 8 single-bit pixels, 4 two-bit pixels, or a pair of 4-bit pixels. Manipulating packed pixels requires extra shifting and masking operations on the CPU.

Blitters were developed to offload repetitive tasks of copying data or filling blocks of memory faster than possible by the CPU. This can be done in parallel with the CPU and also handle special cases which would be significantly slower if coded by hand, such as skipping over pixels marked as transparent or handling data that isn't byte-aligned.

Blitters in computers and video games[edit]

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.[1] The microcode was implemented by Dan Ingalls.[1]

1982: In addition to drawing shape primitives, the NEC µPD7220 video display processor can transfer rectangular bitmaps to display memory via direct memory access and fill rectangular portions of the screen.[3][4]

1982: The Robotron: 2084 arcade video game from Williams Electronics includes two blitter chips which allow the game to have up to 80 simultaneously moving objects.[5] Performance was measured at roughly 910 KB/second.[5] The blitter operates on 4-bit (16 color) pixels where color 0 is transparent, allowing for non-rectangular shapes.[6] Williams used the same hardware in other games from the time period, including Sinistar and Joust.[6]

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.[7] The Mindset was claimed to have graphics up to 50x faster than IBM PC compatibles of the time,[8] but the system was not successful.

1985: One of the 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.[9] The blitter performs an arbitrary boolean operation on three bit vectors of size 16:

destination := op(source A, source B, source C)

1986: The TMS34010 is a general purpose 32-bit processor with built-in instructions, including PIXBLT (Pixel Block Transfer), for manipulating bitmap data. It is optimized for cases that would take extra processing if implemented in software, such as handling transparent pixels, working with non-byte aligned data, and converting between bit depths. PIXBLT provides 22 ways of combining the source and destination data.[10] The TMS34010 serves 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, [11] It was also used in 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.[12]

1987: The IBM 8514/A display adapter, introduced with the IBM Personal System/2 computers in April 1987, includes bit block transfer hardware.[13]

Atari ST BLiTTER chip

1987: The Atari Mega ST 2 ships with a blitter chip.[14] Officially called the "Atari ST Bit-Block Transfer Processor", stylized as BLiTTER, it provides 16 options for merging source and destination data.[15] The blitter is supported on most subsequent ST machines.

1989: The short-lived Atari Transputer Workstation contains blitter hardware as part of its (Mega ST-based) "Blossom" video system.[16]

1989: The Atari Lynx color handheld game system has a custom blitter with scaling and distortion effects.

1993: The Atari Jaguar game console has blitter hardware as part of the custom "Tom" chip.[17]

1996: The VESA Group introduced a standardized way to access features like hardware Bit Block transfers with VBE/accelerator functions (VBE/AF) on IBM PC compatibles.

Operation[edit]

Sprites (left) and associated masks

Typically, a computer program puts information into certain hardware 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 fully transparent pixels—such as sprites—some hardware allows a specific pixel value to be ignored, such as color 0, during the blit. Those pixels are not written to the destination.

Another approach on some systems is to have a second 1 bit per pixel image used as a mask to indicate which pixels to transfer and which to leave untouched. The mask operates like a stencil. The logical operation is:

destination := (background AND NOT mask) OR sprite

Other approaches[edit]

Hardware sprites are small bitmaps which can be positioned independently and are composited together with the background on-the-fly by the video chip. The frame buffer is not modified.[18] The downside of sprites is a limit of moving graphics per scanline, which can range from three (Atari 2600) to eight (Commodore 64 and Atari 8-bit family) to significantly higher for 16-bit consoles and arcade hardware (the Neo Geo can display 96 sprites per line), and the inability to update a permanent bitmap (making them unsuitable for general desktop GUI acceleration).

See also[edit]

References[edit]

  1. ^ a b c Shirriff, Ken. "Restoring YCombinator's Xerox Alto day 5: Microcode tracing with a logic analyzer". Ken Shirriff's Blog.
  2. ^ "BitBlt function". Windows Dev Network. Microsoft. Retrieved 2 October 2016.
  3. ^ Peddie, Jon. "Famous Graphics Chips: NEC µPD7220 Graphics Display Controller". computer.org.
  4. ^ "User's Manual: NEC µPD7220/7220A" (PDF). NEC Electronics. December 1985. Archived from the original (PDF) on 2012-06-16.
  5. ^ a b Wolf, Mark J.P. (June 2012). Before the Crash: Early Video Game History. Wayne State University Press. p. 185. ISBN 9780814334508.
  6. ^ a b Riddle, Sean. "Blitter Information".
  7. ^ Williams, Gregg (April 1984). "Product Preview: The Mindset Personal Computer". Byte Magazine. 9 (4): 278–280.
  8. ^ Anderson, John J. (February 1985). "Mindset Micro: Pushing the envelope, or whatever happened to innovation?". Creative Computing. 11 (2): 50.
  9. ^ "US Patent 4874164 "Personal computer apparatus for block transfer of bit-mapped image data"".[permanent dead link]
  10. ^ Killebrew Jr., Carrell R. (December 1986). "The TMS34010 Graphics System Processor". Byte. Vol. 11, no. 13. p. 204.
  11. ^ "Game listing for games running on the TMS34010 processor". mamedb.com. Archived from the original on 2016-03-04. Retrieved 2016-05-15.
  12. ^ 82786 Graphics Coprocessor User's Manual. Intel. 1988. p. 2-29.
  13. ^ Necasek, Michael. "The 8514/A Graphics Accelerator". OS/2 Museum.
  14. ^ "Atari Mega ST 2". Centre for Computing History.
  15. ^ "User Manual for the Atari ST Bit Block Transfer Processor". archive.org. Atari Corporation. June 17, 1987.
  16. ^ Rosenthal, Marshal M. (November 1989). "The Transputer Connection: An Exclusive Interview with Perihelion's Dr. Tim King". STart. 4 (4).
  17. ^ "Technical Reference Manual Tom & Jerry" (PDF). February 2001. pp. 4–5.
  18. ^ Hague, James. "Why Do Dedicated Game Consoles Exist?". Programming in the 21st Century. Archived from the original on 2018-04-23. Retrieved 2019-09-03.