ImageEffect_DataValue
typedef union ImageEffect_DataValue {...} ImageEffect_DataValue
Overview
The union describes the data values.
Since: 12
Related module: ImageEffect
Header file: image_effect_filter.h
Summary
Member Variables
| Name | Description |
|---|---|
| int32_t int32Value | Integer value, corresponding to EFFECT_DATA_TYPE_INT32. |
| float floatValue | Single-precision floating-point value, corresponding to EFFECT_DATA_TYPE_FLOAT. |
| double doubleValue | Double-precision floating-point value, corresponding to EFFECT_DATA_TYPE_DOUBLE. |
| char charValue | Byte value, corresponding to EFFECT_DATA_TYPE_CHAR. |
| long longValue | Long integer, corresponding to EFFECT_DATA_TYPE_LONG. |
| bool boolValue | Boolean value, corresponding to EFFECT_DATA_TYPE_BOOL. |
| void *ptrValue | Pointer value, corresponding to EFFECT_DATA_TYPE_PTR. |