ImagerHighlightContextBackdoorExtras.mesa
Copyright Ó 1993 by Xerox Corporation. All rights reserved.
Michael Plass, October 28, 1993 10:38 am PDT
DIRECTORY
ImagerColor USING [ConstantColor],
ImagerDevice USING [Device],
ImagerHighlightContextBackdoor USING [ColorLookupTable],
ImagerSample USING [SampleMap];
ImagerHighlightContextBackdoorExtras: CEDAR DEFINITIONS
~
BEGIN
OPEN ImagerHighlightContextBackdoor;
DeviceSetColorLookupTable:
PROC [device: ImagerDevice.Device, colorLookupTable: ColorLookupTable];
See comments on ImagerHighlightContextBackdoor.SetColorLookupTable
DeviceSetHighlight:
PROC [device: ImagerDevice.Device, highlight: ImagerColor.ConstantColor];
DeviceSetSampleMap:
PROC [device: ImagerDevice.Device, sampleMap: ImagerSample.SampleMap]
RETURNS [clipperNeedsFixing:
BOOL];
If this returns TRUE, the clipper needs to be recomputed.
END.