BMPLoader.h
上传用户:arsena_zhu
上传日期:2022-07-12
资源大小:399k
文件大小:1k
源码类别:

OpenGL

开发平台:

Visual C++

  1. #ifndef _BMPLOADER_H_
  2. #define _BMPLOADER_H_
  3. #include "main.h"
  4. #define BITMAP_ID 0x4D42 // universal bitmap ID
  5. struct BMPTexture
  6. {
  7. char filename[128]; // this holds filename
  8. FILE *file; // this holds pointer to file
  9. BITMAPFILEHEADER fileHeader; // file header
  10. BITMAPINFOHEADER infoHeader; // info header
  11. GLubyte *image; // pointer to img data
  12. GLuint bpp; // bits per pixel
  13. GLuint width; // width
  14. GLuint height; // height
  15. GLuint texID; // id of texture (if loaded to opengl)
  16. GLuint size; // data amount in bytes
  17. };
  18. bool LoadBMP(BMPTexture *bmptex, char *filename);
  19. GLuint LoadBMPIntoGL(char *filename);
  20. int GenerateTexture(BMPTexture *t);
  21. bool LoadBMPData(BMPTexture *t);
  22. #endif