NVIDIA? DriveWorks is a collection of modules with C APIs.
Functions
Module functions are defined in camel case, as following:
dwStatus
Status definition.
struct dwModuleObject * dwModuleHandle_t
The Generic Module Object Handle.
Handles
Each module provides a handle to access module functions.
struct dwContextObject const * dwConstContextHandle_t
struct dwContextObject * dwContextHandle_t
Context handle.
Structures
Structures supporting the module are defined with a typedef and prefixed module name in camel case.
typedef struct dwMyModuleParameterStruct {
int32_t parameterTwo;
} dwMyModuleParameterStruct;
float float32_t
Specifies POD types.
Enums
Enums are defined with a prefix of the module name, where each element is:
- Prefixed with the module name using
_
as a separator and
- In capital letters.
typedef enum dwMyModulParamFlags
{
DW_MY_MODULE_PARAM_FLAGS_ONE = 0,
DW_MY_MODULE_PARAM_FLAGS_TWO = 1,
} dwMyModuleParamFlags;