Vuo 2.4.4
Loading...
Searching...
No Matches
VuoImageColorDepth.h
Go to the documentation of this file.
1
10#ifndef VuoImageColorDepth_h
11#define VuoImageColorDepth_h
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
28typedef enum {
29 VuoImageColorDepth_8, // 8 bits per channel (32 bits per RGBA pixel)
30 VuoImageColorDepth_16, // 16 bits per channel (64 bits per RGBA pixel)
31 VuoImageColorDepth_32, // 32 bits per channel (128 bits per RGBA pixel)
33
35
36unsigned int VuoImageColorDepth_getGlInternalFormat(unsigned int baseFormat, VuoImageColorDepth imageColorDepth);
37
39struct json_object * VuoImageColorDepth_getJson(const VuoImageColorDepth value);
42
51
56#ifdef __cplusplus
57}
58#endif
59
60#endif