# HG changeset patch # User Mike Becker # Date 1753210633 -7200 # Node ID 62508d957a220f99ab8f706fd1fc28637609b09b # Parent 2ead0699ce77b10e810c8353fade3cad3b492842 remove outdated TODO comments diff -r 2ead0699ce77 -r 62508d957a22 src/2d.c --- a/src/2d.c Tue Jul 22 20:50:50 2025 +0200 +++ b/src/2d.c Tue Jul 22 20:57:13 2025 +0200 @@ -33,8 +33,6 @@ #include -// TODO: add "origin" arguments to 2D primitives - typedef struct asc_rectangle_shader_s { AscShaderProgram program; asc_uniform_loc color; diff -r 2ead0699ce77 -r 62508d957a22 src/ascension/behavior.h --- a/src/ascension/behavior.h Tue Jul 22 20:50:50 2025 +0200 +++ b/src/ascension/behavior.h Tue Jul 22 20:57:13 2025 +0200 @@ -46,7 +46,6 @@ cxmutstr name; bool enabled; bool killed; - // TODO: more useful attributes }; struct asc_behavior_create_args { diff -r 2ead0699ce77 -r 62508d957a22 src/ascension/scene_node.h --- a/src/ascension/scene_node.h Tue Jul 22 20:50:50 2025 +0200 +++ b/src/ascension/scene_node.h Tue Jul 22 20:57:13 2025 +0200 @@ -161,8 +161,6 @@ */ AscSceneNode *asc_scene_node_empty(void); -// TODO: issue #695 - create a common init-function that all "subclasses" use, which also debug-logs the assigned name - /** * Unlinks the node from its parent and frees the entire subtree. * diff -r 2ead0699ce77 -r 62508d957a22 src/ascension/text.h --- a/src/ascension/text.h Tue Jul 22 20:50:50 2025 +0200 +++ b/src/ascension/text.h Tue Jul 22 20:57:13 2025 +0200 @@ -29,7 +29,6 @@ #define ASCENSION_UI_TEXT_H #include "font.h" -// TODO: clean up these messy include paths #include "mesh.h" #include "texture.h" #include "scene_node.h" diff -r 2ead0699ce77 -r 62508d957a22 src/text.c --- a/src/text.c Tue Jul 22 20:50:50 2025 +0200 +++ b/src/text.c Tue Jul 22 20:57:13 2025 +0200 @@ -41,7 +41,6 @@ AscShaderProgram *asc_text_shader_create(cx_attr_unused int unused) { AscShaderCodes codes; - // TODO: with more advanced feature we want to create specific text shaders if (asc_shader_load_code_files((AscShaderCodeInfo){ .files.vtx = "sprite_vtx.glsl", .files.frag = "sprite_frag.glsl",