diff 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
line wrap: on
line diff
--- a/libmlk-core/mlk/core/image.h	Mon Feb 27 11:18:52 2023 +0100
+++ b/libmlk-core/mlk/core/image.h	Mon Feb 27 11:24:38 2023 +0100
@@ -23,15 +23,15 @@
 
 #include "core.h"
 
-struct texture;
+struct mlk_texture;
 
 MLK_CORE_BEGIN_DECLS
 
 int
-mlk_image_open(struct texture *, const char *);
+mlk_image_open(struct mlk_texture *, const char *);
 
 int
-mlk_image_openmem(struct texture *, const void *, size_t);
+mlk_image_openmem(struct mlk_texture *, const void *, size_t);
 
 MLK_CORE_END_DECLS