<> <> <> DIRECTORY Rope USING [ROPE], Imager USING [Context]; ImagerColorAIS: CEDAR DEFINITIONS ~ BEGIN ColorAISError: PUBLIC SIGNAL [reason: ATOM]; <> GetAISFile: PUBLIC PROC[context: Imager.Context, fileName: Rope.ROPE, xOffset, yOffset: INTEGER _ 0]; <<>> <> Get3AISFiles: PUBLIC PROC[context: Imager.Context, redFile, greenFile, blueFile: Rope.ROPE, xOffset, yOffset: INTEGER _ 0]; <> PutAISFile: PUBLIC PROC[context: Imager.Context, fileName: Rope.ROPE]; << Load file with bits from the display context, color sample interleaving is machine dependent>> PutFastAISFile: PUBLIC PROC[context: Imager.Context, fileName: Rope.ROPE]; <<>> <> Put3AISFiles: PUBLIC PROC[context: Imager.Context, redFile, greenFile, blueFile: Rope.ROPE]; END.