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
11 lines
163 B
C
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); |