diff libcore/core/texture.h @ 147:b386d25832c8

doc: use new nomenclature, closes #2497
author David Demelier <markand@malikania.fr>
date Thu, 15 Oct 2020 09:21:04 +0200
parents 789b23e01f52
children b9b826cd9832
line wrap: on
line diff
--- a/libcore/core/texture.h	Wed Oct 14 18:20:58 2020 +0200
+++ b/libcore/core/texture.h	Thu Oct 15 09:21:04 2020 +0200
@@ -33,9 +33,9 @@
  * \brief Texture object.
  */
 struct texture {
-	unsigned int w;         /*!< (RO) Texture width. */
-	unsigned int h;         /*!< (RO) Texture height. */
-	void *handle;           /*!< (RO) Native handle. */
+	unsigned int w;         /*!< (-) Texture width. */
+	unsigned int h;         /*!< (-) Texture height. */
+	void *handle;           /*!< (*) Native handle. */
 };
 
 /**