20 lines
369 B
C
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);
|