瀏覽代碼

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