Add and plumb the usetex URL parameter to worldview. Required but not yet

functional
This commit is contained in:
Melanie
2010-10-06 05:44:19 +01:00
parent 9a1c8db443
commit d45276b3f6
5 changed files with 20 additions and 14 deletions

View File

@@ -104,13 +104,13 @@ namespace OpenSim.Region.OptionalModules.World.WorldView
}
public byte[] GenerateWorldView(Vector3 pos, Vector3 rot, float fov,
int width, int height)
int width, int height, bool usetex)
{
if (!m_Enabled)
return new Byte[0];
Bitmap bmp = m_Generator.CreateViewImage(pos, rot, fov, width,
height);
height, usetex);
MemoryStream str = new MemoryStream();