I created a .png image and when I load it, gets "distorted"...likes it loss quality while loading .png image...
I'm using Irrlicht of SVN (and I tried with Irrlicht 1.5) and using Direct3D9 driver.
Original image:
Displayed image:
Edit:
This occurs with Direct3D9 and OpenGL. With "Software" the transparent border doesn't work. But I want to use it with Direct3D9 because performance is best...
This is probably due to the dimensions of the image not being power of two (e.g. 64x256). If your hardware doesn't support NPOT textures the image is scaled to a power of two. This can lead to some artifacts. Better add some transparent border to the image to get it into proper dimensions.
yeah there are some graphic cards what support NPOT, and that shows good.
for example in my game, i used NPOT textures a lot but wasnt wrong a bit in my computer.
then i tried out at other computer, and it looked awful xD
from that i decided to use POT textures xD