Home  /  Autodocs  /  graphics.library

NAME

AllocRaster
Allocate space for a native bitplane.

SYNOPSIS

planeptr = AllocRaster( width, height )
d0 d0 d1

PLANEPTR AllocRaster(ULONG,ULONG);

FUNCTION

This function calls the memory allocation routines to allocate memory space for a native bitplane "width" bits wide and "height" bits high.

INPUTS

width
number of columns in bitplane

height
number of rows in bitplane

RESULT

planeptr
pointer to first word in bitplane, or NULL if it was not possible to allocate the desired amount of memory.

NOTES

This function is only able to allocate memory for native, off-screen (non-displayable) bitmaps. It is not able to align memory correctly for all display modes, or RTG (retargetable graphics) modes. In almost all cases, AllocBitMap() should be preferred, as it ensures proper alignment, allocation and initialization of display memory that is to be attached to a ViewPort or Screen.

SEE ALSO

FreeRaster() graphics/gfx.h