GUI Images

Discuss about anything related to the Irrlicht Engine, or read announcements about any significant features or usage changes.
Post Reply
belfegor
Posts: 383
Joined: Mon Sep 18, 2006 7:22 pm
Location: Serbia

GUI Images

Post by belfegor »

I was testing Newton logo as gui image and it looks realy chopy (bad looking)
especialy on letter "O". And find out that this lines are responsible:

in CD3D9Driver.cpp setRenderStates2DMode(...) function.

Code: Select all

pID3DDevice->SetSamplerState(0, D3DSAMP_MINFILTER, D3DTEXF_POINT);
		pID3DDevice->SetSamplerState(0, D3DSAMP_MIPFILTER, D3DTEXF_NONE);
		pID3DDevice->SetSamplerState(0, D3DSAMP_MAGFILTER, D3DTEXF_POINT);
There is no way for now to set quality of gui images?
Seting these three to D3DTEXF_LINEAR removes the problem.
Small FPS demo made using Irrlicht&NewtonDEMO
InfoHERE
Its at very early stage but i think im crazy enough to finish it all alone.
Post Reply