소스 검색

Update some files

Ray 8 년 전
부모
커밋
1df7a8b4a6
3개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  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


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