diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2025-01-23 13:31:10 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2025-01-23 13:31:10 +0100 |
commit | bc9e6042e709b7790f2f130dde08b13c929653b1 (patch) | |
tree | 3e15dea1ab2df440a792e5d09958bc6ae5ba06db | |
parent | 600df042f89ab4d3ce72b84c83ca4134d69f67bf (diff) | |
download | reduced_system_layer-bc9e6042e709b7790f2f130dde08b13c929653b1.zip |
Update TODO
-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 |