Files
tge/Torque/SDK/lib/maxsdk40/hotcheck.h
2026-01-14 10:27:57 -06:00

32 lines
648 B
C

/**********************************************************************
*<
FILE: hotcheck.h
DESCRIPTION: Video Color check utilities
CREATED BY: Dan Silva
HISTORY: created 26 December 1995
*> Copyright (c) 1995, All Rights Reserved.
**********************************************************************/
#ifndef __HOTCHECK__H
#define __HOTCHECK__H
#define VID_NTSC 0
#define VID_PAL 1
// Methods
#define HOT_FLAG 0
#define HOT_SCALE_LUM 1
#define HOT_SCALE_SAT 2
CoreExport void BuildHotTable( int video_type = VID_NTSC );
CoreExport int HotLimit(Color48 *thepix, int method = HOT_SCALE_LUM); // do video color check
#endif