Enumerations | |
enum | TK_Status { TK_Normal = 0, TK_Error = 1, TK_Pause = 2, TK_Single = 3, TK_Pending = 4, TK_Revisit = 5, TK_Complete = 6, TK_Version = 7, TK_NotFound = 8, TK_Abort = 9 } |
Codes which can be either passed to various toolkit functions, or indicate the result of a toolkit function call. More... | |
enum | TK_File_Write_Options { TK_Suppress_LOD = 0x00000002, TK_Full_Resolution_Vertices = 0x00000004, TK_Full_Resolution_Normals = 0x00000008, TK_Full_Resolution = (TK_Full_Resolution_Vertices|TK_Full_Resolution_Normals), TK_First_LOD_Is_Bounding_Box = 0x00000010, TK_Force_Tags = 0x00000020, TK_Disable_Priority_Heuristic = 0x00000040, TK_Disable_Global_Compression = 0x00000100, TK_Disable_Instancing = 0x00000200, TK_Generate_Dictionary = 0x00000400, TK_Connectivity_Compression = 0x00000800, TK_Disable_Tristrips = 0x00001000, TK_Disable_Compound_Primitives = 0x00002000, TK_Global_Quantization = 0x00004000 } |
Options which control how the HOOPS Stream File is generated. More... |
The HOOPS/Stream Toolkit utilizes several global enumerated types. The functions which black box support for writing and reading HOOPS Stream Files are also global, and are defined in BStream.h
|
|
Codes which can be either passed to various toolkit functions, or indicate the result of a toolkit function call. Various toolkit functions can take arguments which control processing behavior. Most functions also provide a return value of type TK_Status to indicate success, failure or other information about processing status.
|