comparison src/image.h @ 22:5519ad48822e

doc: add Doxygen documentation, closes #2450
author David Demelier <markand@malikania.fr>
date Thu, 09 Jan 2020 20:48:01 +0100
parents 63eaec5ceba9
children
comparison
equal deleted inserted replaced
21:63eaec5ceba9 22:5519ad48822e
40 40
41 /** 41 /**
42 * Open a file from a memory buffer. 42 * Open a file from a memory buffer.
43 * 43 *
44 * \pre buffer != NULL 44 * \pre buffer != NULL
45 * \param the memory buffer 45 * \param buffer the memory buffer
46 * \return size the memory size 46 * \param size the memory size
47 * \return the texture or NULL on error 47 * \return the texture or NULL on error
48 */ 48 */
49 struct texture * 49 struct texture *
50 image_openb(const void *buffer, size_t size); 50 image_openb(const void *buffer, size_t size);
51 51