Vuo  2.3.2
VuoBlurShape.h
Go to the documentation of this file.
1 
10 #pragma once
11 
13 typedef void * VuoList_VuoBlurShape;
14 #define VuoList_VuoBlurShape_TYPE_DEFINED
16 
28 typedef enum
29 {
30  VuoBlurShape_Gaussian,
31  VuoBlurShape_Linear,
32  VuoBlurShape_Box,
33  VuoBlurShape_Disc,
34 } VuoBlurShape;
35 
37 struct json_object *VuoBlurShape_getJson(const VuoBlurShape value);
39 char *VuoBlurShape_getSummary(const VuoBlurShape value);
40 
41 #define VuoBlurShape_SUPPORTS_COMPARISON
42 bool VuoBlurShape_areEqual(const VuoBlurShape valueA, const VuoBlurShape valueB);
43 bool VuoBlurShape_isLessThan(const VuoBlurShape valueA, const VuoBlurShape valueB);
44 
54