ImagerMemory.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Implements a context class capable of memorizing Imager calls, and playing them back into another context.
Eric Nickell, June 25, 1985 4:23:17 pm PDT
Pier, October 8, 1985 1:56:25 pm PDT
DIRECTORY
Imager USING [Context];
ImagerMemory: CEDAR DEFINITIONS
~ BEGIN
Context: TYPE ~ Imager.Context;
NewMemoryContext: PROC RETURNS [c: Context];
GetContextSize: PROC [c: Context] RETURNS [size: INT]; -- size in words
Replay: PROC [c, into: Context];
Replays the Imager calls that c has memorized into into.
END.