diff options
Diffstat (limited to 'tex.c')
-rw-r--r-- | tex.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -0,0 +1,10 @@ +#define STB_IMAGE_IMPLEMENTATION +#include<stb/stb_image.h> +#include"mino.h" +#include"tex.h" +Tex tex_load(IM C*n){Tex r;U32 c; + stbi_set_flip_vertically_on_load(1); + N(r.d=stbi_load(n,(S32*)&r.w,(S32*)&r.h,(S32*)&c,3),die("failed to load texture: %s\n",stbi_failure_reason())); + R r;} + +V tex_free(Tex t){stbi_image_free(t.d);} |