ImagerOpsExtras.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Doug Wyatt, April 8, 1985 1:40:54 pm PST
DIRECTORY
Imager USING [Context];
ImagerOpsExtras: CEDAR DEFINITIONS
~ BEGIN
Bitmap: TYPE ~ REF BitmapRep;
BitmapRep: TYPE ~ RECORD [
ref: REF,
base: LONG POINTER,
wordsPerLine: NAT,
width, height: NAT
];
NewBitmap: PROC [width, height: NAT] RETURNS [Bitmap];
BitmapContext: PROC [bitmap: Bitmap] RETURNS [Imager.Context];
END.