Added some support for clamping.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/irrlicht@4059 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk
2009-09-28 12:25:21 +00:00
parent 5a2eee966a
commit 35fb7ce90e

View File

@@ -114,14 +114,12 @@ void Material::init(unsigned int index)
//-----------------------------------------------------------------------------
void Material::install(bool is_full_path)
{
// FIXME: do we actually still need the texture here? Irrlicht should
// cache them anyway.
// Avoid irrlicht warning about not being able to load texture.
m_texture = irr_driver->getTexture(file_manager->getTextureFile(m_texname));
// now set the name to the basename, so that all tests work as expected
m_texname = StringUtils::getBasename(m_texname);
} // isntall
} // install
//-----------------------------------------------------------------------------
/** Sets the appropriate flags in an irrlicht SMaterial.
@@ -140,5 +138,8 @@ void Material::setMaterialProperties(video::SMaterial *m) const
m->MaterialType = video::EMT_SPHERE_MAP;
else if(m_alpha_blending)
m->MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL;
if(m_clamp_tex)
m->setFlag(video::EMF_TEXTURE_WRAP, video::ETC_CLAMP);
// FIXME: more parameters need to be set!
} // setMaterialProperties