Vuo 2.4.4
Loading...
Searching...
No Matches
VuoImageWrapMode.h
Go to the documentation of this file.
1
10#ifndef VuoImageWrapMode_h
11#define VuoImageWrapMode_h
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
28typedef enum {
29 VuoImageWrapMode_None, // pixels are rendered black
30 VuoImageWrapMode_ClampEdge, // the last pixel on the edge is repeated
31 VuoImageWrapMode_Repeat, // the image will tile
32 VuoImageWrapMode_MirroredRepeat // the image will repeat inverted
34
36
37VuoImageWrapMode VuoImageWrapMode_makeFromJson(struct json_object * js);
38struct json_object * VuoImageWrapMode_getJson(const VuoImageWrapMode value);
41
43
50
55#ifdef __cplusplus
56}
57#endif
58
59#endif