libhydride/include/textureapi.h
2017-11-11 18:04:40 +03:00

20 lines
369 B
C

/*
* textureapi.h
*
* Created on: Nov 11, 2017
* Author: nullifiedcat
*/
#pragma once
typedef unsigned xoverlay_texture_handle;
xoverlay_texture_handle
xoverlay_texture_load_png_rgba(const char *path);
void
xoverlay_texture_unload(xoverlay_texture_handle handle);
void
xoverlay_texture_get_size(xoverlay_texture_handle handle, int *width, int *height);