diff options
| author | Ray <raysan5@gmail.com> | 2017-04-20 18:09:30 +0200 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2017-04-20 18:09:30 +0200 |
| commit | 1df7a8b4a6833d0589470f42db97cc7a423dca0b (patch) | |
| tree | 6bb4f5495af8f12a6a33b0ea77119960fb934c89 /src | |
| parent | 517a7e3466d6619fa257e517379a46b33a87f6f6 (diff) | |
| download | raylib-1df7a8b4a6833d0589470f42db97cc7a423dca0b.tar.gz raylib-1df7a8b4a6833d0589470f42db97cc7a423dca0b.zip | |
Update some files
Diffstat (limited to 'src')
| -rw-r--r-- | src/textures.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/textures.c b/src/textures.c index 9fd5944e..af95f9dc 100644 --- a/src/textures.c +++ b/src/textures.c @@ -379,6 +379,8 @@ Texture2D LoadTextureFromImage(Image image) texture.height = image.height; texture.mipmaps = image.mipmaps; texture.format = image.format; + + TraceLog(INFO, "[TEX %i] Parameters: %ix%i, %i mips, format %i", texture.width, texture.height, texture.mipmaps, texture.format); return texture; } |
