comparison libmlk-core/mlk/core/image.h @ 472:bc5483849614

core: texture -> mlk_texture
author David Demelier <markand@malikania.fr>
date Mon, 27 Feb 2023 11:24:38 +0100
parents 5729efd23286
children 6e8f6640e05b
comparison
equal deleted inserted replaced
471:3761e33d429e 472:bc5483849614
21 21
22 #include <stddef.h> 22 #include <stddef.h>
23 23
24 #include "core.h" 24 #include "core.h"
25 25
26 struct texture; 26 struct mlk_texture;
27 27
28 MLK_CORE_BEGIN_DECLS 28 MLK_CORE_BEGIN_DECLS
29 29
30 int 30 int
31 mlk_image_open(struct texture *, const char *); 31 mlk_image_open(struct mlk_texture *, const char *);
32 32
33 int 33 int
34 mlk_image_openmem(struct texture *, const void *, size_t); 34 mlk_image_openmem(struct mlk_texture *, const void *, size_t);
35 35
36 MLK_CORE_END_DECLS 36 MLK_CORE_END_DECLS
37 37
38 #endif /* !MLK_CORE_IMAGE_H */ 38 #endif /* !MLK_CORE_IMAGE_H */