diff --git a/driver/amuseplay.cpp b/driver/amuseplay.cpp index 65b0f16..1fd3cee 100644 --- a/driver/amuseplay.cpp +++ b/driver/amuseplay.cpp @@ -632,7 +632,7 @@ struct AppCallback : boo::IApplicationCallback boo::ITextureR* tex = nullptr; boo::GraphicsDataToken gfxToken = m_win->getMainContextDataFactory()->commitTransaction([&](boo::IGraphicsDataFactory::Context& ctx) -> bool { - tex = ctx.newRenderTexture(100, 100, false, false); + tex = ctx.newRenderTexture(100, 100, boo::TextureClampMode::Repeat, 0, 0); return true; }); boo::IGraphicsCommandQueue* q = m_win->getCommandQueue();