Disabling filtering in software renderer

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
makripin
Posts: 3
Joined: Sun Jan 06, 2008 4:06 pm
Location: Third world

Disabling filtering in software renderer

Post by makripin »

Irrlicht has 2 software renderers: one is fast but very buggy (on my computer at least), and the other works well but is too slow. The slower one uses a kind of bilinear/trilinear filtering on the textures, and I guess it could run much faster with this filtering turned off. Where could I disable it in the code?
bitplane
Admin
Posts: 3204
Joined: Mon Mar 28, 2005 3:45 am
Location: England
Contact:

Post by bitplane »

You can change the compile-time speed settings either in IrrCompileConfig.h or you can set a custom profile in SoftwareDriver2_compile_config.h (undefine SOFTWARE_DRIVER_2_BILINEAR)

Currently SOFTWARE_DRIVER_2_USE_WBUFFER must be defined, which I'll raise as a bug on the tracker shortly.
Submit bugs/patches to the tracker!
Need help right now? Visit the chat room
Post Reply