diff options
| author | raysan5 <raysan5@gmail.com> | 2015-08-30 17:44:14 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2015-08-30 17:44:14 +0200 |
| commit | d7e7ef6a7de1e0b4be2fbbd5ff774150e3d1634a (patch) | |
| tree | f46b496e6f3f95cd40ffe5efc37532abe5bddfc3 /src | |
| parent | 055d8927cccbc2b7b4dd5d6f6928159ba3fff2e6 (diff) | |
| download | raylib-d7e7ef6a7de1e0b4be2fbbd5ff774150e3d1634a.tar.gz raylib-d7e7ef6a7de1e0b4be2fbbd5ff774150e3d1634a.zip | |
Added some comments
Diffstat (limited to 'src')
| -rw-r--r-- | src/textures.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/textures.c b/src/textures.c index 43d6cb15..e2eb8b2f 100644 --- a/src/textures.c +++ b/src/textures.c @@ -32,7 +32,10 @@ #include <stdlib.h> // Declares malloc() and free() for memory management #include <string.h> // Required for strcmp(), strrchr(), strncmp() -#include "rlgl.h" // raylib OpenGL abstraction layer to OpenGL 1.1, 3.3+ or ES2 +#include "rlgl.h" // raylib OpenGL abstraction layer to OpenGL 1.1, 3.3 or ES2 + // Required: rlglLoadTexture() rlDeleteTextures(), + // rlglGenerateMipmaps(), some funcs for DrawTexturePro() + #include "utils.h" // rRES data decompression utility function // NOTE: Includes Android fopen function map |
