M7350/bootable/bootloader/lk/include/lib/tga.h
2024-09-09 08:52:07 +00:00

11 lines
168 B
C

#ifndef __LIB_TGA_H
#define __LIB_TGA_H
#include <lib/gfx.h>
#include <sys/types.h>
gfx_surface *tga_decode(const void *ptr, size_t len, gfx_format format);
#endif