Enum VLColorLookup.TVLColorLookupMode
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: VideoLabPkg
Unit: VLColorLookup
Contents |
Syntax
Delphi:
type TVLColorLookupMode = (clmStep, clmLinear, clmCubic);
C++ Builder:
enum TVLColorLookupMode {clmStep, clmLinear, clmCubic};
Visual C++ (MFC):
enum CTVLColorLookupMode {clmStep, clmLinear, clmCubic};
Summary
Color lookup modes enumeration.
Description
Defines enumeration with the color lookup modes.
Values
clmStep | Step function (no interpolation) to be used for the missing elements of the table. |
clmLinear | Linear interpolation to be used for the missing elements of the table. |
clmCubic | Cubic interpolation to be used for the missing elements of the table. |