BMPLoader.h
上传用户:arsena_zhu
上传日期:2022-07-12
资源大小:399k
文件大小:1k
- #ifndef _BMPLOADER_H_
- #define _BMPLOADER_H_
- #include "main.h"
- #define BITMAP_ID 0x4D42 // universal bitmap ID
- struct BMPTexture
- {
- char filename[128]; // this holds filename
- FILE *file; // this holds pointer to file
- BITMAPFILEHEADER fileHeader; // file header
- BITMAPINFOHEADER infoHeader; // info header
- GLubyte *image; // pointer to img data
- GLuint bpp; // bits per pixel
- GLuint width; // width
- GLuint height; // height
- GLuint texID; // id of texture (if loaded to opengl)
- GLuint size; // data amount in bytes
- };
- bool LoadBMP(BMPTexture *bmptex, char *filename);
- GLuint LoadBMPIntoGL(char *filename);
- int GenerateTexture(BMPTexture *t);
- bool LoadBMPData(BMPTexture *t);
- #endif