comparison 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
comparison
equal deleted inserted replaced
146:7d7ea7a9cf50 147:b386d25832c8
31 31
32 /** 32 /**
33 * \brief Texture object. 33 * \brief Texture object.
34 */ 34 */
35 struct texture { 35 struct texture {
36 unsigned int w; /*!< (RO) Texture width. */ 36 unsigned int w; /*!< (-) Texture width. */
37 unsigned int h; /*!< (RO) Texture height. */ 37 unsigned int h; /*!< (-) Texture height. */
38 void *handle; /*!< (RO) Native handle. */ 38 void *handle; /*!< (*) Native handle. */
39 }; 39 };
40 40
41 /** 41 /**
42 * Create a new texture. 42 * Create a new texture.
43 * 43 *