Render question

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
perl888
Posts: 3
Joined: Wed Aug 04, 2004 5:16 am

Render question

Post by perl888 »

When I try the example 3 'Quake3Map', I note that some area looks 'blurry'. How to let all the area looks 'clear' :?:
Image[/img]
puh
Posts: 356
Joined: Tue Aug 26, 2003 3:53 pm

Post by puh »

try to switch off mipmapping

Code: Select all

device->getVideoDriver()->setTextureCreationFlag(irr::video::ETCF_ALWAYS_32_BIT,true); 
device->getVideoDriver()->setTextureCreationFlag(irr::video::ETCF_ALWAYS_16_BIT,false); 
device->getVideoDriver()->setTextureCreationFlag(irr::video::ETCF_CREATE_MIP_MAPS,false);
Image
blayde
Posts: 45
Joined: Fri Jul 16, 2004 12:49 pm
Contact:

Post by blayde »

it looks like you already are, but in case your not : use opengl, it looks better
perl888
Posts: 3
Joined: Wed Aug 04, 2004 5:16 am

Post by perl888 »

:o
Post Reply