Browse Source

Update some files

pull/266/head
Ray 8 years ago
parent
commit
1df7a8b4a6
3 changed files with 2 additions and 0 deletions
  1. BIN
      docs/examples/web/textures/resources/scarfy.png
  2. BIN
      examples/textures/resources/scarfy.png
  3. +2
    -0
      src/textures.c

BIN
docs/examples/web/textures/resources/scarfy.png View File

Before After
Width: 768  |  Height: 128  |  Size: 21 KiB Width: 768  |  Height: 128  |  Size: 32 KiB

BIN
examples/textures/resources/scarfy.png View File

Before After
Width: 768  |  Height: 128  |  Size: 21 KiB Width: 768  |  Height: 128  |  Size: 32 KiB

+ 2
- 0
src/textures.c View File

@ -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;
}

Loading…
Cancel
Save