2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 16:27:43 +00:00

Updates for texture clamp mode

This commit is contained in:
Jack Andersen
2017-09-30 18:26:31 -10:00
parent 4b39da4e01
commit 3fc46f1597
4 changed files with 7 additions and 7 deletions

View File

@@ -19,7 +19,7 @@ static const zeus::RGBA32 Tex[] =
void Toolbar::Resources::init(boo::IGraphicsDataFactory::Context& ctx, const IThemeData& theme)
{
m_shadingTex = ctx.newStaticTexture(4, 1, 1, boo::TextureFormat::RGBA8, Tex, 16);
m_shadingTex = ctx.newStaticTexture(4, 1, 1, boo::TextureFormat::RGBA8, boo::TextureClampMode::Repeat, Tex, 16);
}
Toolbar::Toolbar(ViewResources& res, View& parentView, Position tbPos, unsigned units)