use arrays
This commit is contained in:
+10
@@ -47,6 +47,11 @@ typedef struct File {
|
||||
time_t last_write;
|
||||
} File;
|
||||
|
||||
typedef struct FileArray {
|
||||
File values[ARRAY_SIZE];
|
||||
unsigned int length;
|
||||
} FileArray;
|
||||
|
||||
typedef struct ShaderProgram {
|
||||
bool error;
|
||||
|
||||
@@ -114,6 +119,11 @@ typedef struct VideoCapture {
|
||||
EGLImageKHR dma_image;
|
||||
} VideoCapture;
|
||||
|
||||
typedef struct VideoCaptureArray {
|
||||
VideoCapture values[ARRAY_SIZE];
|
||||
unsigned int length;
|
||||
} VideoCaptureArray;
|
||||
|
||||
typedef GLFWwindow Window;
|
||||
|
||||
typedef struct SharedContext {
|
||||
|
||||
Reference in New Issue
Block a user