diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2024-11-13 12:27:58 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2024-11-13 12:27:58 -0500 |
| commit | 5011ea1b44c055893c691e923f4e82cdaebd5b0c (patch) | |
| tree | 5b6d421b2287d0ddf9f733be9ce1c928a2822e7d /config.h | |
| parent | 44792fd5369cfe2ad1478b72bf22b0d1829f291b (diff) | |
| download | balls-5011ea1b44c055893c691e923f4e82cdaebd5b0c.zip | |
move gl functions out of balls.c
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,5 +1,10 @@ -#define CL_TARGET_OPENCL_VERSION 110 - /* #define WINDOWS 1 */ +#define CL_TARGET_OPENCL_VERSION 110 +#define WINDOW_TITLE "Balls" enum { FPS = 60 }; /* Frames per second. */ +enum window { + WIDTH = 640, + HEIGHT = 640, +}; +enum { CIRCLE_POINTS = 24 }; /* Number of vertices per circle. */ |