diff libmlk-core/mlk/core/image.c @ 453:49e7024f5455

core: image -> mlk_image
author David Demelier <markand@malikania.fr>
date Sat, 18 Feb 2023 20:55:12 +0100
parents 773a082f0b91
children bc5483849614
line wrap: on
line diff
--- a/libmlk-core/mlk/core/image.c	Sat Feb 18 20:46:48 2023 +0100
+++ b/libmlk-core/mlk/core/image.c	Sat Feb 18 20:55:12 2023 +0100
@@ -39,7 +39,7 @@
 }
 
 int
-image_open(struct texture *tex, const char *path)
+mlk_image_open(struct texture *tex, const char *path)
 {
 	assert(tex);
 	assert(path);
@@ -53,7 +53,7 @@
 }
 
 int
-image_openmem(struct texture *tex, const void *buffer, size_t size)
+mlk_image_openmem(struct texture *tex, const void *buffer, size_t size)
 {
 	assert(buffer);