diff libcore/core/drawable.h @ 169:eb0a7ab71023

misc: extreme cleanup, closes #2506 While here, remove unneeded stuff.
author David Demelier <markand@malikania.fr>
date Tue, 20 Oct 2020 17:39:13 +0200
parents b386d25832c8
children
line wrap: on
line diff
--- a/libcore/core/drawable.h	Tue Oct 20 15:09:39 2020 +0200
+++ b/libcore/core/drawable.h	Tue Oct 20 17:39:13 2020 +0200
@@ -141,8 +141,7 @@
  * \pre dw != NULL
  * \param st the stack
  * \param dw the drawable to reference
- * \return true if the drawable was placed correctly and false if there wasn't
- *         enough room.
+ * \return True if the drawable was added correctly (enough space).
  */
 bool
 drawable_stack_add(struct drawable_stack *st, struct drawable *dw);
@@ -155,7 +154,7 @@
  * \pre st != NULL
  * \param st the drawable stack
  * \param ticks the number of ticks since last frame
- * \return true if all drawable were rendered
+ * \return True if all drawable were rendered.
  */
 bool
 drawable_stack_update(struct drawable_stack *st, unsigned int ticks);
@@ -174,7 +173,7 @@
  *
  * \pre st != NULL
  * \param st the stack
- * \return false if there is at least one drawable in the stack
+ * \return False if there is at least one drawable in the stack.
  */
 bool
 drawable_stack_completed(const struct drawable_stack *st);