VisionWorks Toolkit Reference

December 18, 2015 | 1.2 Release

 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
vx.h File Reference

Detailed Description

The top level OpenVX Header.

Definition in file vx.h.

Go to the source code of this file.

Macros

#define VX_MAX_IMPLEMENTATION_NAME   (64)
 Defines the maximum number of characters in a implementation string. More...
 
#define VX_MAX_KERNEL_NAME   (256)
 Defines the maximum string length of a kernel name to be added to OpenVX. More...
 
#define VX_MAX_LOG_MESSAGE_LEN   (1024)
 Defines the maximum length of a message buffer to copy from the log. More...
 
#define VX_VERSION   VX_VERSION_1_0
 
#define VX_VERSION_1_0   (VX_VERSION_MAJOR(1) | VX_VERSION_MINOR(0))
 Defines the predefined version number for 1.0. More...
 
#define VX_VERSION_MAJOR(x)   ((x & 0xFF) << 8)
 
#define VX_VERSION_MINOR(x)   ((x & 0xFF) << 0)