mirror of
https://github.com/opensim/opensim.git
synced 2026-06-20 12:37:35 +08:00
make neb happy. I found where we initialized the dynamic textures to
32bit images and changed them to 24bit images.
This commit is contained in:
@@ -144,7 +144,7 @@ namespace OpenSim.Region.Environment.Modules.Scripting.VectorRender
|
||||
if ((size < 128) || (size > 1024))
|
||||
size = 256;
|
||||
|
||||
Bitmap bitmap = new Bitmap(size, size, PixelFormat.Format32bppArgb);
|
||||
Bitmap bitmap = new Bitmap(size, size, PixelFormat.Format24bppRgb);
|
||||
|
||||
Graphics graph = Graphics.FromImage(bitmap);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user