Overlay and Antialias

Started by
1 comment, last by kaifeng 16 years, 6 months ago
I am using D3DDECLUSAGE_POSITIONT to draw overlay object. Everything works right, But antialias... When i open antialias, the overlay rect has a blur edge. As you know that is not welcome for artist. Thank for any replies.
Advertisement
Just disable anti-aliasing when you're drawing the overlay.

d3dDevice->SetRenderState(D3DRS_MULTISAMPLEANTIALIAS, FALSE);
Hehe, thanks a lot

This topic is closed to new replies.

Advertisement