diff options
| author | raysan5 <[email protected]> | 2020-03-27 18:49:21 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2020-03-27 18:49:21 +0100 |
| commit | d28e73849bd53230fe322bd03a7c2ddab8d1c7a2 (patch) | |
| tree | 6756c0f828b8cad46ff8803e88fc4cc3c1ee4177 /src/textures.c | |
| parent | d7b15ac1cfd5411510dc98f389bb6cc25060f1d0 (diff) | |
| download | raylib-d28e73849bd53230fe322bd03a7c2ddab8d1c7a2.tar.gz raylib-d28e73849bd53230fe322bd03a7c2ddab8d1c7a2.zip | |
Review TRACELOG() messages
Diffstat (limited to 'src/textures.c')
| -rw-r--r-- | src/textures.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/textures.c b/src/textures.c index fc5ba5c1..038ad133 100644 --- a/src/textures.c +++ b/src/textures.c @@ -3122,11 +3122,11 @@ static Image LoadDDS(const char *fileName) fread(&ddsHeader, sizeof(DDSHeader), 1, ddsFile); TRACELOGD("IMAGE: [%s] DDS file info:", fileName); - TRACELOGD(" > Header size: %i", fileName, sizeof(DDSHeader)); - TRACELOGD(" > Pixel format size: %i", fileName, ddsHeader.ddspf.size); + TRACELOGD(" > Header size: %i", fileName, sizeof(DDSHeader)); + TRACELOGD(" > Pixel format size: %i", fileName, ddsHeader.ddspf.size); TRACELOGD(" > Pixel format flags: 0x%x", fileName, ddsHeader.ddspf.flags); - TRACELOGD(" > File format: 0x%x", fileName, ddsHeader.ddspf.fourCC); - TRACELOGD(" > File bit count: 0x%x", fileName, ddsHeader.ddspf.rgbBitCount); + TRACELOGD(" > File format: 0x%x", fileName, ddsHeader.ddspf.fourCC); + TRACELOGD(" > File bit count: 0x%x", fileName, ddsHeader.ddspf.rgbBitCount); image.width = ddsHeader.width; image.height = ddsHeader.height; @@ -3301,7 +3301,7 @@ static Image LoadPKM(const char *fileName) pkmHeader.height = ((pkmHeader.height & 0x00FF) << 8) | ((pkmHeader.height & 0xFF00) >> 8); TRACELOGD("IMAGE: [%s] PKM file info:", fileName); - TRACELOGD(" > Image width: %i", pkmHeader.width); + TRACELOGD(" > Image width: %i", pkmHeader.width); TRACELOGD(" > Image height: %i", pkmHeader.height); TRACELOGD(" > Image format: %i", pkmHeader.format); @@ -3395,7 +3395,7 @@ static Image LoadKTX(const char *fileName) image.mipmaps = ktxHeader.mipmapLevels; TRACELOGD("IMAGE: [%s] KTX file info:", fileName); - TRACELOGD(" > Image width: %i", ktxHeader.width); + TRACELOGD(" > Image width: %i", ktxHeader.width); TRACELOGD(" > Image height: %i", ktxHeader.height); TRACELOGD(" > Image format: 0x%x", ktxHeader.glInternalFormat); @@ -3722,7 +3722,7 @@ static Image LoadASTC(const char *fileName) image.height = 0x00000000 | ((int)astcHeader.height[2] << 16) | ((int)astcHeader.height[1] << 8) | ((int)astcHeader.height[0]); TRACELOGD("IMAGE: [%s] ASTC file info:", fileName); - TRACELOGD(" > Image width: %i", image.width); + TRACELOGD(" > Image width: %i", image.width); TRACELOGD(" > Image height: %i", image.height); TRACELOGD(" > Image blocks: %ix%i", astcHeader.blockX, astcHeader.blockY); |
