diff options
| author | raysan5 <raysan5@gmail.com> | 2014-12-31 18:03:32 +0100 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2014-12-31 18:03:32 +0100 |
| commit | 905b6ec53df01a4f660c12c08c32e2cc301f7ad6 (patch) | |
| tree | 8b5c43267c6056e45be8807e0867b8fd50777a2d /src/utils.h | |
| parent | 08a4ee34ebe97e679a27f43b9f25525982029d17 (diff) | |
| download | raylib-905b6ec53df01a4f660c12c08c32e2cc301f7ad6.tar.gz raylib-905b6ec53df01a4f660c12c08c32e2cc301f7ad6.zip | |
Added full support for HTML5 (emscripten)
Corrected some bugs on the way...
Automatically convert textures to POT on RPI and WEB
Diffstat (limited to 'src/utils.h')
| -rw-r--r-- | src/utils.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils.h b/src/utils.h index 784c7926..882aebf6 100644 --- a/src/utils.h +++ b/src/utils.h @@ -77,6 +77,7 @@ void WritePNG(const char *fileName, unsigned char *imgData, int width, int heigh void TraceLog(int msgType, const char *text, ...); // Outputs a trace log message const char *GetExtension(const char *fileName); // Returns extension of a filename +int GetNextPOT(int num); // Calculate next power-of-two value for a given num #if defined(PLATFORM_ANDROID) void InitAssetManager(AAssetManager *manager); // Initialize asset manager from android app |
