diff options
-rwxr-xr-x | graphics.c | 2 | ||||
-rw-r--r-- | reduced_system_layer.c | 12 |
2 files changed, 7 insertions, 7 deletions
@@ -20,6 +20,7 @@ gcc \ -Wno-old-style-declaration \ -Wno-overlength-strings \ -O3 -D NDEBUG \ + -D NO_WAYLAND=1 \ -D GRAPHICS_TEST_SUITE \ -lX11 -lm -lasound \ -o $BIN $SRC && \ @@ -41,7 +42,6 @@ exit $? # */ #define REDUCED_SYSTEM_LAYER_HEADER #endif -#define NO_WAYLAND 1 #include "reduced_system_layer.c" // ================================================================ diff --git a/reduced_system_layer.c b/reduced_system_layer.c index 055cd3a..38b80dd 100644 --- a/reduced_system_layer.c +++ b/reduced_system_layer.c @@ -35,12 +35,12 @@ // - Logging // - Graphics perf - request cache // Requires: -// + Graphics tests -// + Graphics requests -// + Seldom allocator -// + Blake2 hash -// + Requests cache -// + Incremental rendering +// + [ ] Graphics tests +// + [x] Graphics requests +// + [ ] Seldom allocator +// + [ ] Blake2 hash +// + [ ] Requests cache +// + [ ] Incremental rendering // - Examples // - Conway's Game of Life // - Julia Set |