[Contents] [Index] [Help] [Retrace] [Browse <] [Browse >]

The graphics library includes several routines that use the hardware
blitter to handle the rectangularly organized data that you work with when
doing raster-based graphics.  These blitter routines do the following:

      * Clear an entire segment of memory

      * Set a raster to a specific color

      * Scroll a subrectangle of a raster

      * Draw a pattern "through a stencil"

      * Extract a pattern from a bit-packed array and draw it into a
        raster

      * Copy rectangular regions from one bitmap to another

      * Control and utilize the hardware-based data mover, the blitter

The following sections cover these routines in detail.

    WARNING:
    --------
    The graphics library rendering and data movement routines generally
    wait to get access to the blitter, start their blit, and then exit
    without waiting for the blit to finish.  Therefore, you must
    WaitBlit() after a graphics rendering or data movement call if you
    intend to immediately deallocate, examine, or perform order-dependent
    processor operations on the memory used in the call.

 Clearing a Memory Area 
 Setting a Whole Raster to a Color 
 Scrolling a Sub-rectangle of a Raster 
 Drawing through a Stencil 
 Extracting from a Bit-packed Array 
 Copying Rectangular Areas 
 Scaling Rectangular Areas 
 When to Wait for the Blitter 
 Accessing the Blitter Directly 


[Back to Amiga Developer Docs]