Refactor nvfbc into abstract capture api

This commit is contained in:
dec05eba
2022-10-14 01:16:31 +02:00
parent 9d65552d05
commit 93d46b9767
11 changed files with 525 additions and 306 deletions

8
include/vec2.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef VEC2_H
#define VEC2_H
typedef struct {
int x, y;
} vec2i;
#endif /* VEC2_H */