diff options
author | pommicket <pommicket@gmail.com> | 2023-02-28 14:13:06 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-02-28 14:13:06 -0500 |
commit | 5e92dac7b8ff9d60bfa3dcc69c3f77663a01aea4 (patch) | |
tree | bfc1faa98f94930dbb6946fc0f0f8d249c5087bd | |
parent | 11300a7e247eeb28c101f43a51d8dbfde0479eaa (diff) |
new settings system seems to be working
-rw-r--r-- | Makefile | 8 | ||||
-rw-r--r-- | gl.c | 1 | ||||
-rw-r--r-- | main.c | 2 |
3 files changed, 5 insertions, 6 deletions
@@ -11,10 +11,12 @@ LOCAL_DATA_DIR=/home/`logname`/.local/share/ted INSTALL_BIN_DIR=/usr/bin debug-build: ted compile_commands.json ted: debug/ted - @# note: doing cp would fail if `ted` is busy - cat debug/ted > ted + @# note: needed so cp doesn't fail if `ted` is busy + rm -f ted + cp debug/ted . compile_commands.json: debug/ted - cat debug/compile_commands.json > compile_commands.json + rm -f compile_commands.json + cp debug/compile_commands.json . debug/ted: *.[ch] libpcre2-32.a CMakeLists.txt mkdir -p debug cd debug && cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -DCMAKE_BUILD_TYPE=Debug -GNinja .. @@ -65,7 +65,6 @@ void gl_rc_texture_decref(GlRcTexture **pt) { GlRcTexture *t = *pt; if (!t) return; if (--t->ref_count == 0) { - debug_println("Delete texture %u", t->texture); glDeleteTextures(1, &t->texture); free(t); } @@ -1,6 +1,4 @@ /* -@TODO: -- test new settings system FUTURE FEATURES: - doxygen documentation for ted.h - manual.md |