... FILTEREDIMAGE.
Basically I have an image that I am drawing at 0.5 scale. If I don't pass any flags in (i.e. default of -1 is used) it's pixelley when drawn. The default LoadImage flags are MASKEDIMAGE | FILTEREDIMAGE (according to the docs for AutoImage flag).
OK fine, so I tried passing in just MIPMAPPEDIMAGE and it's still pixelley.
Hmm, OK, pass in MASKEDIMAGE | MIPMAPPEDIMAGE and it's still pixelly.
Pass in all three MASKEDIMAGE | FILTEREDIMAGE | MIPMAPPEDIMAGE and it's fine. Also works without MASKEDIMAGE.
Why does MIPMAPPEDIMAGE need FILTEREDIMAGE to work properly when scaling down?
Basically I have an image that I am drawing at 0.5 scale. If I don't pass any flags in (i.e. default of -1 is used) it's pixelley when drawn. The default LoadImage flags are MASKEDIMAGE | FILTEREDIMAGE (according to the docs for AutoImage flag).
OK fine, so I tried passing in just MIPMAPPEDIMAGE and it's still pixelley.
Hmm, OK, pass in MASKEDIMAGE | MIPMAPPEDIMAGE and it's still pixelly.
Pass in all three MASKEDIMAGE | FILTEREDIMAGE | MIPMAPPEDIMAGE and it's fine. Also works without MASKEDIMAGE.
Why does MIPMAPPEDIMAGE need FILTEREDIMAGE to work properly when scaling down?