tileable flags are needed also without shaders because of filters

This commit is contained in:
RealBadAngel 2015-08-20 03:39:26 +02:00 committed by est31
parent 8b8d17b22b
commit 980d095e32
1 changed files with 6 additions and 0 deletions

View File

@ -250,6 +250,12 @@ struct TileSpec
}
material.BackfaceCulling = (material_flags & MATERIAL_FLAG_BACKFACE_CULLING)
? true : false;
if (!(material_flags & MATERIAL_FLAG_TILEABLE_HORIZONTAL)) {
material.TextureLayer[0].TextureWrapU = video::ETC_CLAMP_TO_EDGE;
}
if (!(material_flags & MATERIAL_FLAG_TILEABLE_VERTICAL)) {
material.TextureLayer[0].TextureWrapV = video::ETC_CLAMP_TO_EDGE;
}
}
void applyMaterialOptionsWithShaders(video::SMaterial &material) const