Mikemon/src/load_tga_file.h
mikeb b603d997cf Glyph output -> single Glyphs;
read bmp file (via stb, m_header is coming later)
 -> stb_image.h;
added monochrom imagetype (load_tga_file); 

git-svn-id: svn://ammerhai.com/home/mike/pokemon_repo@19 24008968-59e6-ed4c-a10b-0b2c954b24ab
2021-07-18 13:09:44 +00:00

11 lines
163 B
C

#pragma once
#include <stdint.h>
struct Image_Info {
int64_t width;
int64_t height;
uint32_t* pixel;
};
Image_Info load_tga_file(const char* path);