You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
521 B

4 years ago
4 years ago
4 years ago
4 years ago
  1. #pragma once
  2. #include "ggl.h"
  3. #include "SOIL.h"
  4. unsigned char * LoadFileContent(const char*path, int&filesize);
  5. unsigned char * DecodeBMP(unsigned char*bmpFileData, int&width, int&height);
  6. GLuint CreateTexture2D(unsigned char*pixelData, int width, int height, GLenum type);
  7. GLuint CreateTexture2DFromBMP(const char *bmpPath);
  8. GLuint CreateTextureCubeFromBMP(const char *front, const char *back, const char *left,
  9. const char *right, const char *top, const char *bottom);
  10. GLuint CreateTextureFromFile(const char*filePath);