Search found 1 match

by pocz
Sat Nov 13, 2021 5:56 pm
Forum: Closed/Resolved
Topic: Some .dds files have strange colors, what should I do?
Replies: 4
Views: 3963

Re: Some .dds files have strange colors, what should I do?

I used " texconv.exe " to batch convert a bunch of images from PNG to DDS.
With this code in the CMD:
texconv -r "C:\png images\*.png" -o "C:\dds images" -m 1 -f DXT1

"-m 0" - means default number of mipmaps for the image,
"-m 1" - means one image
"-m 4" - means the image and 3 mip map levels.
-r ...