浏览代码

Update some files

Ray 8 年之前
父节点
当前提交
1df7a8b4a6
共有 3 个文件被更改,包括 2 次插入0 次删除
  1. 二进制
      docs/examples/web/textures/resources/scarfy.png
  2. 二进制
      examples/textures/resources/scarfy.png
  3. 2 0
      src/textures.c

二进制
docs/examples/web/textures/resources/scarfy.png


二进制
examples/textures/resources/scarfy.png


+ 2 - 0
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;
 }