diff options
| author | raysan5 <raysan5@gmail.com> | 2015-01-02 20:59:54 +0100 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2015-01-02 20:59:54 +0100 |
| commit | 0bfd283526f62f2f03e90ac4881f532048304ca2 (patch) | |
| tree | f63a2e835cdc4947e6535777219fd2c1f957e2d5 /src/core.c | |
| parent | 7ea8326b52f596d16fe059d34ce6673c4b401f90 (diff) | |
| download | raylib-0bfd283526f62f2f03e90ac4881f532048304ca2.tar.gz raylib-0bfd283526f62f2f03e90ac4881f532048304ca2.zip | |
Added support for model color tint
Also, added support for normals on models
Diffstat (limited to 'src/core.c')
| -rw-r--r-- | src/core.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -261,6 +261,8 @@ static void CommandCallback(struct android_app *app, int32_t cmd); // // Initialize Window and Graphics Context (OpenGL) void InitWindow(int width, int height, const char *title) { + TraceLog(INFO, "Initializing raylib..."); + // Store window title (could be useful...) windowTitle = title; @@ -298,6 +300,8 @@ void InitWindow(int width, int height, const char *title) // Android activity initialization void InitWindow(int width, int height, struct android_app *state) { + TraceLog(INFO, "Initializing raylib..."); + app_dummy(); screenWidth = width; |
